清除浮動元素大全

css清除浮動大全共8種方法

浮動會使當前標籤產生向上浮的效果,同時會影響到先後標籤、父級標籤的位置及 width height 屬性。並且一樣的代碼,在各類瀏覽器中顯示效果也有可能不相同,這樣讓清除浮動更難了。解決浮動引發的問題有多種方法,但有些方法在瀏覽器兼容性方面還有問題。javascript

下面總結8種清除浮動的方法(測試已經過 ie chrome firefox opera,後面三種方法只作瞭解就能夠了):css

1.父級div定義 height

代碼以下:java

<style type="text/css"> 
.div1{background:#000080;border:1px solid red;/*解決代碼*/height:200px;} 
.div2{background:#800080;border:1px solid red;height:100px;margin-top:10px} 
.left{float:left;width:20%;height:200px;background:#DDD} 
.right{float:right;width:30%;height:80px;background:#DDD} 
</style> 
<div class="div1"> 
<div class="left">Left</div> 
<div class="right">Right</div> 
</div> 
<div class="div2"> 
div2 
</div>

原理:父級div手動定義height,就解決了父級div沒法自動獲取到高度的問題。chrome

優勢:簡單、代碼少、容易掌握瀏覽器

缺點:只適合高度固定的佈局,要給出精確的高度,若是高度和父級div不同時,會產生問題佈局

建議:不推薦使用,只建議高度固定的佈局時使用測試

2.結尾處加空div標籤 clear:both

代碼以下:網站

<style type="text/css"> 
.div1{background:#000080;border:1px solid red} 
.div2{background:#800080;border:1px solid red;height:100px;margin-top:10px} 
.left{float:left;width:20%;height:200px;background:#DDD} 
.right{float:right;width:30%;height:80px;background:#DDD} 
/*清除浮動代碼*/ 
.clearfloat{clear:both} 
</style> 
<div class="div1"> 
<div class="left">Left</div> 
<div class="right">Right</div> 
<div class="clearfloat"></div> 
</div> 
<div class="div2"> 
div2 
</div>

原理:添加一個空div,利用css提升的clear:both清除浮動,讓父級div能自動獲取到高度firefox

優勢:簡單、代碼少、瀏覽器支持好、不容易出現怪問題code

缺點:很多初學者不理解原理;若是頁面浮動佈局多,就要增長不少空div,讓人感受很很差

建議:不推薦使用,但此方法是之前主要使用的一種清除浮動方法

3.父級div定義 僞類:after 和 zoom(推薦使用)

代碼以下:

<style type="text/css"> 
.div1{background:#000080;border:1px solid red;} 
.div2{background:#800080;border:1px solid red;height:100px;margin-top:10px} 
.left{float:left;width:20%;height:200px;background:#DDD} 
.right{float:right;width:30%;height:80px;background:#DDD} 
/*清除浮動代碼*/ 
.clearfloat:after{display:block;clear:both;content:"";visibility:hidden;height:0} 
.clearfloat{zoom:1} 
</style> 
<div class="div1 clearfloat"> 
<div class="left">Left</div> 
<div class="right">Right</div> 
</div> 
<div class="div2"> 
div2 
</div>

原理:IE8以上和非IE瀏覽器才支持:after,原理和方法2有點相似,zoom(IE轉有屬性)可解決ie6,ie7浮動問題

優勢:瀏覽器支持好、不容易出現怪問題(目前:大型網站都有使用,如:騰迅,網易,新浪等等)

缺點:代碼多、很多初學者不理解原理,要兩句代碼結合使用才能讓主流瀏覽器都支持。

建議:推薦使用,建議定義公共類,以減小CSS代碼。

4.父級div定義 overflow:hidden (能夠經過觸發BFC的方式,實現清楚浮動效果)

代碼以下:

<style type="text/css"> 
.div1{background:#000080;border:1px solid red;/*解決代碼*/width:98%;overflow:hidden} 
.div2{background:#800080;border:1px solid red;height:100px;margin-top:10px;width:98%} 
.left{float:left;width:20%;height:200px;background:#DDD} 
.right{float:right;width:30%;height:80px;background:#DDD} 
</style> 
<div class="div1"> 
<div class="left">Left</div> 
<div class="right">Right</div> 
</div> 
<div class="div2"> 
div2 
</div>

原理:必須定義width或zoom:1,同時不能定義height,使用overflow:hidden時,瀏覽器會自動檢查浮動區域的高度

優勢:簡單、代碼少、瀏覽器支持好

缺點:不能和position配合使用,由於超出的尺寸的會被隱藏。

建議:只推薦沒有使用position或對overflow:hidden理解比較深的朋友使用。

5.父級div定義 overflow:auto

代碼以下:

<style type="text/css"> 
.div1{background:#000080;border:1px solid red;/*解決代碼*/width:98%;overflow:auto} 
.div2{background:#800080;border:1px solid red;height:100px;margin-top:10px;width:98%} 
.left{float:left;width:20%;height:200px;background:#DDD} 
.right{float:right;width:30%;height:80px;background:#DDD} 
</style> 
<div class="div1"> 
<div class="left">Left</div> 
<div class="right">Right</div> 
</div> 
<div class="div2"> 
div2 
</div>

原理:必須定義width或zoom:1,同時不能定義height,使用overflow:auto時,瀏覽器會自動檢查浮動區域的高度

優勢:簡單、代碼少、瀏覽器支持好

缺點:內部寬高超過父級div時,會出現滾動條。

建議:不推薦使用,若是你須要出現滾動條或者確保你的代碼不會出現滾動條就使用吧。

6.父級div 也一塊兒浮動

代碼以下:

<style type="text/css"> 
.div1{background:#000080;border:1px solid red;/*解決代碼*/width:98%;margin-bottom:10px;float:left} 
.div2{background:#800080;border:1px solid red;height:100px;width:98%;/*解決代碼*/clear:both} 
.left{float:left;width:20%;height:200px;background:#DDD} 
.right{float:right;width:30%;height:80px;background:#DDD} 
</style> 
<div class="div1"> 
<div class="left">Left</div> 
<div class="right">Right</div> 
</div> 
<div class="div2"> 
div2 
</div>

原理:全部代碼一塊兒浮動,就變成了一個總體

優勢:沒有優勢

缺點:會產生新的浮動問題。

建議:不推薦使用,只做瞭解。

7.父級div定義 display:table

代碼以下:

<style type="text/css"> 
.div1{background:#000080;border:1px solid red;/*解決代碼*/width:98%;display:table;margin-bottom:10px;} 
.div2{background:#800080;border:1px solid red;height:100px;width:98%;} 
.left{float:left;width:20%;height:200px;background:#DDD} 
.right{float:right;width:30%;height:80px;background:#DDD} 
</style> 
<div class="div1"> 
<div class="left">Left</div> 
<div class="right">Right</div> 
</div> 
<div class="div2"> 
div2 
</div>

原理:將div屬性變成表格

優勢:沒有優勢

缺點:會產生新的未知問題。

建議:不推薦使用,只做瞭解。

8.結尾處加 br標籤 clear:both

代碼以下:

<style type="text/css"> 
.div1{background:#000080;border:1px solid red;margin-bottom:10px;zoom:1} 
.div2{background:#800080;border:1px solid red;height:100px} 
.left{float:left;width:20%;height:200px;background:#DDD} 
.right{float:right;width:30%;height:80px;background:#DDD} 
.clearfloat{clear:both} 
</style> 
<div class="div1"> 
<div class="left">Left</div> 
<div class="right">Right</div> 
<br class="clearfloat" /> 
</div> 
<div class="div2"> 
div2 
</div>

原理:父級div定義zoom:1來解決IE浮動問題,結尾處加 br標籤 clear:both

建議:不推薦使用,只做瞭解。

相關文章
相關標籤/搜索