CSS樣式-如何清除元素浮動?

來源:互聯網
上載者:User
清除浮動這個問題,做前端的應該再熟悉不過了,下面介紹4種方法給大家參考

1.使用clear:both清除浮動

樣本1:使用p

html代碼

css代碼

<p class="box">

<p class="p"></p>

<p class="clear"></p>

</p>

.box{ width:300px;margin:0 auto;border:10px solid #000;}

.p{ width:200px;height:200px;background:red;float:left;}

.clear{ height:0px;font-size:0;clear:both;overflow: hidden;}

樣本2:使用<br clear="all">

<p class="box">

<p class="p"></p>

<br clear="all"/>

</p>

.box{ width:300px;margin:0 auto;border:10px solid #000;}

.p{ width:200px;height:200px;background:red;float:left;}

樣本3:偽類對象::after+zoom:1(推薦使用)

<p class="box clear">

<p class="p"></p>

</p>

.box{margin:0 auto;border:10px solid #000;}

.p{ width:200px;height:200px;background:red;float:left;}

.clear{zoom:1;}

.clear:after{display:block;clear:both;content:"";visibility:hidden;height:0}

2.使用overflow屬性

html代碼

css代碼

<p class="box">

<p class="p1"></p>

</p>

.box{ width:300px;border:1px solid #000;overflow:auto;}

.p1{ width:260px;height:400px;background:Red;float:left;}
注意:overflow:auto;overflow:hidden;都可以

3.使用display屬性

html代碼

css代碼

<p class="box">

<p class="p"></p>

</p>

.box{ width:300px;margin:0 auto;border:10px solid #000; display:inline-block;}

.p{ width:200px;height:200px;background:red;float:left;}

注意:父元素不能水平置中,在父元素使用text-align:center解決

4.父級元素浮動

html代碼

css代碼

<p class="box">

<p class="p"></p>

</p>

.box{ width:300px;margin:0 auto;border:10px solid #000; float:left;}

.p{ width:200px;height:200px;background:red;float:left;}

注意:父元素不能水平置中,可以使用定位解決

position: relative;

left: 50%;

margin-left: -150px;


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.