CSS代码疑问
body {
background-image: url('pattern.png');
}
p {
background-color: #fff;
padding: 3px;
margin: 3px;
border: 1px solid rgb(244, 244, 244);
width: 200px;
margin: auto;
这段代码中,P元素中的background-color: #fff 的作用是什么?我将这段代码注释了,IE显示的效果是一样的。
HTML代码如下
<body>
<p>
The background-image property uses the url() syntax to specify
a background-image. The image is tiled along the x-axis and
the y-axis.
</p>
</body>
答案:p段落的背景色为:白色
可能你本来网页的背景也是浅色,看不出来。
你把#fff改成red,刷新,你就看得出来效果了。
上一个:关于div css 绝对定位,“position: absolute;” 在线求助!
下一个:html 中 a 的id 在css中的属性不提作用