我的主容器高度不遵循他們的孩子寬度父母身高不跟隨他們的浮動兒童
這裏是我的代碼你有任何建議,請指教。
我需要提前CSS的解決方案不是JavaScript的,所以,謝謝
<div id="mainContainer">
<div id="leftContent">
</div>
<div id="rightContent">
</div>
</div>
,這裏是我的CSS
#mainContainer{
width: 1000px;
/*height: 1000px;*/
height:auto;
margin-left:auto;
margin-right:auto;
background-color: #ff6600;
padding-bottom: 20px;
}
#leftContent{
height: 100px;
float: left;
width: 380px;
background-color: violet;
}
#rightContent{
height: 100px;
float: right;
width: 620px;
background-color: yellow;
}
你可以將一個clearfix應用於元素。家長的高度不會適應標準的浮動元素。 – 2013-05-11 03:34:01