我创建了一个非常简单的网页布局,可以在这里看到: http: //s361608839.websitehome.co.uk/greengold/www/index.html如您所见,似乎有问题。div #rightcol 似乎被左侧顶部的 div 向下推(#leftcolbanner)。
#leftcolbanner 的 CSS 是:
#leftcolbanner{
width: 707px;
height: 266px;
float: left;
background: url(../images/banner_home.gif) no-repeat;
margin: 20px 0 20px 20px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px solid #e1dbce;
}
和#rightcol:
#rightcol{
width: 190px;
background: #f4f2ec url(../images/bg_rightcol.gif) no-repeat right bottom;
float: right;
min-height: 550px;
padding: 25px;
-moz-border-radius-topleft: 0px;
-moz-border-radius-topright: 5px;
-moz-border-radius-bottomright: 5px;
-moz-border-radius-bottomleft: 0px;
-webkit-border-radius: 0px 5px 5px 0px;
border-radius: 0px 5px 5px 0px;
border-left: 1px solid #e1dbce;
}
#leftcolbanner 的宽度不应该是#rightcol 被下推的问题。根据我的经验,这似乎是通常唯一的原因,但这次并非如此。
任何人都可以看到我看不到的任何东西吗?
非常感谢