改變 CSS 中元素的背景顏色非常簡單明了。步驟是:
選擇元素:決定要變更其背景顏色的 HTML 元素。
使用背景顏色:在 CSS 檔案或
<!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="styles.css"> </head> <body> <div class="container"> <p id="paragraph">This is a paragraph.</p> <button>Click Me</button> </div> </body> </html>
/* Change background color of the body */ body { background-color: lightblue; } /* Change background color of an element with the class 'container' */ .container { background-color: lightgreen; } /* Change background color of an element with the id 'paragraph' */ #paragraph { background-color: lightyellow; } /* Change background color of all button elements */ button { background-color: lightcoral; }
以上是更改 CSS 中的背景顏色的詳細內容。更多資訊請關注PHP中文網其他相關文章!