如何让我的标题在我的 tumblr 博客的整个页面上重复?

发布于 2024-10-14 07:43:02 字数 273 浏览 4 评论 0原文

好的,这是我的博客:

http://thestorywithnoending.tumblr.com/

我怎样才能获得顶部图片(带有头部/飞机的标题)一遍又一遍地重复,以便整个顶部都会显示该图像......现在它只是一个大图像,但我如何调整代码以便图像重复?

请测试代码,一旦您想到解决方法,

非常感谢!谁能想到这一点就太棒了:)

Ok, here is my blog:

http://thestorywithnoending.tumblr.com/

how can i get the top image (the header with the head/airplanes) to repeat over and over, so that the whole top will that image... right now its just one big image, but how can i adjust the code so that the image repeats?

Please test out the code, once youve thought of a way to fix it,

thank you so much! Whoever figures it out is awesome :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

这个俗人 2024-10-21 07:43:02

在您现在使用的 #left div 上方使用 #header div

<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; 
}

use a #header div above the #left div you are using now.

<div id="header">
   <!-- content -->
</div>

And then you can use CSS similar to the following (you'll have to set the height as appropriate:

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; 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文