CSS background-color属性

background-color属性的定义和用法:
设置或检索对象的背景颜色。
当背景颜色与背景图像(background-image)都被设定了时,背景图片将覆盖于背景颜色之上。
对应的脚本特性为backgroundColor 
语法结构:

background-color:<color>

 取值:
<color>:指定颜色。
transparent是默认值。 
浏览器支持: 
IE浏览器支持此属性。
火狐浏览器支持此属性。
谷歌浏览器支持此属性。
opera浏览器支持此属性。
继承性:
无继承性。
实例代码:

 

 

 

 

<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>CSS教程</title>
<style type="text/css">
.mytest{
  height:30px;
  width:130px;
  background-color:green;
}
</style>
</head>
<body>
  <div class="mytest">蚂蚁部落欢迎您</div>
</body>
</html>

 

原文地址是:CSS background-color属性一章节。

你可能感兴趣的:(CSS background-color属性)