在進行浮動布局時,大多數人都深知,在必要的地方進行浮動清理:<div style="clear:both;"></div>。
例如:
<div style="background:#666;"> <!-- float container -->
<div style="float:left; width:30%; height:40px;background:#EEE; ">Some Content</div>
</div>
此時預覽此代碼,我們會發現最外層的父元素float container,並沒有顯示。這是因為子項目因進行了浮動,而脫離了文檔流,導致父元素的height為零。
若將代碼修改為:
<div style="background:#666;"> <!-- float container -->
<div style="float:left; width:30%; height:40px;background:#EEE; ">Some Content</div>
<div style="clear:both"></div>
</div>
注意,多了一段清理浮動的代碼。這是一種好的CSS代碼習慣,但是這種方法增加了無用的元素。這裡有一種更好的方法,將HTML代碼修改為:
<div class="clearfix" style="background:#666;"> <!-- float container -->
<div style="float:left; width:30%; height:40px;background:#EEE; ">Some Content</div>
</div>
定義CSS類,進行“浮動清理”的控制:
.clearfix:after{
content: ".";
clear: both;
height: 0;
visibility: hidden;
display: block;
}
.clearfix{
display: inline-block;
}
* html .clearfix {}{height: 1%;}
.clearfix {}{display: block;}
此時,預覽以上代碼( 刪去這種注釋 ),會發現即使子項目進行了浮動,父元素float container仍然會將其包圍,進行高度自適應。
代碼參考:http://www.positioniseverything.net/easyclearing.html
#html/xhtml/xml專欄