我有一个 div main,我已经将我的内容和侧边栏包裹起来。我已将#main 指定为具有背景图像和 1200 像素的最小高度。
在 Google Chrome 和 Firefox 中,当我检查源时,div 没有任何属性。因此 div 的背景图像和高度也不起作用。
<!--Main content layout -->
#main {
clear:both;
position: relative;
min-height: 1200px;
background-image:url(images/white.png);
background-repeat: repeat-x;
}
.sidebar1 {
float: right;
width: 20%;
padding-bottom: 10px;
margin-top: 20px;
}
.content {
padding: 10px 0;
width: 76%;
float: left;
margin-top: 20px;
}
网址为:http ://www.tibetskyvillage.org/
真的很感激别人对此的关注。我一直使用这种方法,但由于某种原因,这次它失败了。