因此,我试图设置一个带有背景图像的容器,当容器 div 中的其他 div 元素足够长时,该背景图像会重复。当包含的 div 很短时,它希望不会重复。
但是,我无法让图像重复 - 我认为我编写#container 的方式有些问题。
这是我刚才的HTML...
<body>
<div id=container>
<div id=textblock>
<div id=maintext>
<p>text here</p>
</div>
</div>
</div>
</body>
这是CSS...
body {
background-color: #888;
background-position: top;
height:100%;
margin:0;
padding:0;
}
#container {
background-position: relative;
width: 960px;
min-height: 720px;
margin-left: auto;
margin-right: auto;
font-family: Antelope H;
font-size: 1.5em;
color: #c60;
background:url(images/containerback-01.png) repeat-y;
background-color: #fc6;
}
这是现在的网站