CSS Float导致内容被推送到HTML页面

前端之家收集整理的这篇文章主要介绍了CSS Float导致内容被推送到HTML页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经创建了一个非常简单的网页布局,可以在这里看到: 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被推下来的问题.这似乎是我经验中唯一的原因,但这次并非如此.

任何人都可以看到任何我看不到的东西吗?

非常感谢

解决方法

将#rightCol div移到#leftCol div之上.
原文链接:https://www.f2er.com/css/214112.html

猜你在找的CSS相关文章