1

这是我的 tumblr 博客: thestorywithnoending.tumblr.com

我想要图像标题周围的框架,以便在我向下滚动时内容消失,但标题保持原位......

就像这个博客:

疲倦的皮肤.tumblr.com

但我不知道如何做到这一点,

请帮忙,

谢谢。

4

1 回答 1

2

这是您需要做的。在您当前的代码中替换它

                                                      

                                                      

                                                      

                                                      

                                  


</style>
<body>
<p><center><a href="http://thestorywithnoending.tumblr.com"><img src="http://michaeljamess.webs.com/blogheader.png" border="0"/></a></center>
</p>

有了这个

<style type="text/css">
#left {
 float: left;
 margin-left:338px;
 width: 500px;
 height: 100px;
 font-size: 11px;
 text-align:left;
 position:fixed;
 background-color:none;
 padding:0px;
 z-index:999;
 top:0px;
}
#content{
 margin-top:300px!important;
}
</style>
<div id="left">
  <center>
   <a href="http://thestorywithnoending.tumblr.com">
     <img src="http://michaeljamess.webs.com/blogheader.png" border="0"/>
   </a>
  </center>
</div>

ps 如果它解决了你的问题,请将其标记为最佳答案:)

于 2010-12-29T03:49:16.880 回答