我有一个奇怪的问题,我无法理解:
我有一个标题 div,我想显示一个水平重复的背景图像:
的HTML:
<div id="headerwrapper">
<div id="header">
<p>This is an extremely interesting test. This is an extremely interesting test. This is an extremely interesting test.</p>
</div>
</div>
这是CSS:
* {
margin:0;
padding:0;
}
#headerwrapper {
margin:0 auto;
width:630px;
}
#header {
width:630px;
background-image:url(../images/headermiddleback.jpg);
background-repeat:repeat-x;
}
当我在浏览器中查看它时,我只能看到文本上方显示的背景图像的 1 个实例。但它没有重复。
知道我在这里做错了什么吗?