好的,这是我的博客:
http://thestorywithnoending.tumblr.com/
我怎样才能让顶部图像(带头/飞机的标题)反复重复,这样整个顶部就会出现那个图像...现在它只是一个大图像,但我怎样才能调整代码,以便图像重复?
一旦你想到了修复它的方法,请测试代码,
非常感谢你!无论谁想出来都很棒:)
答案 0 :(得分:1)
在你现在使用的#header div
div上方使用#left
。
<div id="header">
<!-- content -->
</div>
然后您可以使用类似于以下内容的CSS(您必须根据需要设置高度:
body{
margin:0px;
padding:0px;
}
#left
{ width:100%;
height:100px;
margin:0px;
background-color:#FFF;
background-image:url('http://i52.tinypic.com/15yxa40.png');
background-repeat:repeat-x;
}