1. 程式人生 > >css基礎 BFC 不與浮動元素產生交集、自適應

css基礎 BFC 不與浮動元素產生交集、自適應

order src 效果 css基礎 border htm log 學習 w3c

禮悟:
   公恒學思合行悟,尊師重道存感恩。葉見尋根三返一,江河湖海同一體。
虛懷若谷良心主,願行無悔給最苦。讀書鍛煉養身心,誠勸且行且珍惜。


   ide:visual studio 2017  
browser:Chrome
os:win7

代碼

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <meta name="author" content
="https://www.cnblogs.com/jizuiku"/> <title></title> <style type="text/css"> .father { width:300px; height:300px; margin:50px; border:1px solid red; float:left; } .box-float { width:100px
; height:100px; background-color:orangered; float:left; } .box-bfc { /* bfc這個盒子不指定寬度,產生自適應的效果 */ height:150px; background-color:skyblue; } </style> </head> <body> <div class="father"
> <div class="box-float"></div> <div class="box-bfc"></div> </div> <div class="father"> <div class="box-float"></div> <!-- 生成BFC --> <div class="box-bfc" style="overflow:hidden;"></div> </div> <div class="father"> <!-- 註意:這個浮動的div寬度有變 --> <div class="box-float" style="width:250px;"></div> <!-- BFC自適應,寬度有變 --> <div class="box-bfc" style="overflow:hidden;"></div> </div> </body> </html>

效果

技術分享圖片


CSS3優秀,值得學習。
學習資源: www.w3cschool.cn + itcast和itheima視頻庫 + 清凈的心地。
如果您有公開的資源,可以分享給我的話,用您的資源學習也可以。
博文是觀看視頻後,融入思考寫成的。博文好,是老師講得好。博文壞,是 給最苦 沒認真。

css基礎 BFC 不與浮動元素產生交集、自適應