更改 css 中元素的背景颜色非常简单明了。步骤是:
选择元素:决定要更改其背景颜色的 html 元素。
使用背景颜色:在 css 文件中或 html 中的
例子
超文本标记语言1
2
3
4
<link rel=”stylesheet” type=”text/css” href=”styles.css”><div class=”container”>
<p id=”paragraph”>this is a paragraph.</p>
<button>click me</button>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Change background co搭建源码点我wcqh.cnlor 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搭建源码点我wcqh.cn all button elements */
button {
background-color: lightcoral;
}
以上就是更改 CSS 中的背景颜色的详细内容,更多请关注青狐资源网其它相关文章!
暂无评论内容