请多多包涵,因为我对手动编写网页还很陌生。我应用了我创建的网站中的 CSS 和 HTML 来为 Blogger 页面设置外观以匹配外观。在 FireFox 版本 17.0.1 中进行测试时,一切看起来都很好,但我的 div #body_wrap的背景在 IE 8 中重复多次失败。
我可能遗漏了一些简单的东西,但在确定原因方面我将不胜感激。我想知道它是否与 IE 相关,或者只是 FireFox 正在弥补缺陷的糟糕代码。
这是博客的链接:
http://www.zenmotostore.blogspot.com/
这是所涉及的 div 容器的 CSS:
#body_wrap {
width: 1074px;
margin: 0px auto;
padding: 0px;
position: relative;
background: url(http://www.zenmotostore.com/images/repeat_bgd_shadow_blog.png) top repeat-y;
clear: both;
}
#body_content_wrap {
width: 984px;
margin: 0px 45px 0px 45px;
padding: 0px;
padding-bottom: 7px;
background: #000000;
position: relative;
clear: both;
}
#scrollofzen_header {
width: 983px;
height: 191px;
margin: 0px 0px 0px 0px;
padding: 0px;
background: #000000 url(http://www.zenmotostore.com/images/scroll_of_zen_header.jpg) top center no-repeat;
position: relative;
clear: both;
}
div #scrollofzen_header位于 HTML 中的 Blogger 内容代码上方。两者都包含在#body_content_wrap div 中。
如果我需要在帖子中包含更多代码,请告诉我。提前感谢您提供的任何帮助!