欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

css background-color属性的使用说明

程序员文章站 2022-04-12 15:18:56
...
语法:
background-color : transparent | color

参数:
transparent :  背景色透明
color :  指定颜色。请参阅颜色单位和附录:颜色表

说明:

设置或检索对象的背景颜色。
对应的脚本特性为backgroundColor。请参阅我编写的其他书目。

示例:

p { background-color: silver }
div { background-color: rgb(223,71,177) } 
body { background-color: #98AB6F }
pre { background-color: transparent; }

background-color -- 背景色,定义背景的颜色

取值: <color> | transparent | inherit

<color>: 颜色表示法

transparent: 透明

inherit: 继承

初始值: transparent

继承性: 是

适用于: 所有元素

background:背景.color:颜色.

背景色与前景色对应,可以定义背景的颜色.

示例

body {	background-color:green;}

定义网页的背景使用绿色.

以上就是css background-color属性的使用说明的详细内容,更多请关注其它相关文章!