Say you want to change the background color of links to yellow. Then you’d add the following code:a { color: #000000; background-color: #FFFF00; } Here's the result:CSS Background ColorHere's a quick refresher, just in case: The CSS background-color property allows you to change...
body { background-color:yellow; } h1 { background-color:#00ff00; } p { background-color:rgb(255,0,255); } TIY浏览器支持 所有浏览器都支持 background-color 属性。 注释:任何版本的 Internet Explorer (包括 IE8)都不支持属性值 "inherit"。可能的值 值描述 color_name 规定颜色值为颜色名称...
CSS background-color属性设置元素的背景颜色。您可以通过颜色值或关键字“transparent”设置背景颜色。元素的背景是元素的总大小,包括填充和边框(但不包括边距)。见盒子模型。下表总结了此属性的用法上下文和版本历史记录
color: white; } .exampletwo { background-color: rgb(153,102,153); color: rgb(255,255,204); } .examplethree { background-color: #777799; color: #FFFFFF; } 结果 规范 Specification Status Comment CSS Backgrounds and Borders Module Level 3The definition of 'background-color' in that ...
background-color属性被指定为单个<color>值。 值 <color>是<color>描述背景的统一颜色的CSS 。即使background-image定义了一个或几个,如果图像不透明,透明度也会影响渲染效果。在CSS中,transparent是一种颜色。 正式语法 <color>where <color> = <rgb()> | <rgba()> | <hsl()> | <hsla()> | <hex-...
cssCopy to Clipboard /* Keyword values */ background-color: red; background-color: indigo; /* Hexadecimal value */ background-color: #bbff00; /* Fully opaque */ background-color: #bf0; /* Fully opaque shorthand */ background-color: #11ffee00; /* Fully transparent */ background-...
CSS的background-color属性用于设置元素的背景颜色,基本语法如下: selector { background-color: color; } 复制代码 其中,selector为需要设置背景颜色的元素选择器,color为颜色值。颜色值可以使用以下几种形式: 颜色名称:可以使用预定义的颜色名称,如red、blue等。 十六进制值:以#开头,后面跟着6位的十六进制数值。
cssCopy to Clipboard /* Keyword values */ background-color: red; background-color: indigo; /* Hexadecimal value */ background-color: #bbff00; /* Fully opaque */ background-color: #bf0; /* Fully opaque shorthand */ background-color: #11ffee00; /* Fully transparent */ background-...
在CSS中,color和background-color代表了两种不同的样式属性: color:此属性用于设置元素的前景色,即元素内文本的颜色。例如: p{color: red; } 这将使所有标签(段落)内的文本颜色变为红色。 background-color:此属性用于设置元素的背景色。例如: p{back...