在这里我们对p元素,h1元素,div元素设置背景颜色
实例代码:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
p{background-color:red;}
h2{background-color:blue;}
div{background-color:yellow;}
p,h2,div{width:400px;
text-align:center;
}
</style>
</head>
<body>
<h1>为其它元素设置背景颜色</h1>
<p>这是段落背景颜色</p>
<h2>这是标题背景颜色</h1>
<div>这是Div背景颜色</div>
</body>
</html>
运行效果:
评论