CSS清除浮動元素方法

來源:互聯網
上載者:User

在進行浮動布局時,大多數人都深知,在必要的地方進行浮動清理:<div style=”clear:both;”></div>。
例如:
<div style=”background:#666;”> 
      <div style=”float:left; width:30%; height:40px;background:#EEE; “>Some Content</div>
</div>
  此時預覽此代碼,我們會發現最外層的父元素float container,並沒有顯示。這是因為子項目因進行了浮動,而脫離了文檔流,導致父元素的height為零。
  若將代碼修改為:

<div style=”background:#666;”> 
                <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;”> 
                <div style=”float:left; width:30%; height:40px;background:#EEE; “>Some Content</div>
</div>
  定義CSS類,進行“浮動清理”的控制:

Code:
.clearfix:after {
  content: “.”;
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}           
這是對Firefox進行的處理,因為Firefox支援產生元素,而IE所有版本都不支援產生元素

.clearfix {
  display: inline-block;    
}               
/* 這是對 Mac 上的IE瀏覽器進行的處理 */
* html .clearfix {height: 1%;}       
/* 這是對 win 上的IE瀏覽器進行的處理 */
.clearfix {display: block;}       
/* 這是對display: inline-block;進行的修改,重設為區塊元素*/

  會發現即使子項目進行了浮動,父元素float container仍然會將其包圍,進行高度自適應。
  clear元素的margin-top被重設為零

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.