您好,登錄后才能下訂單哦!
這篇文章主要講解了“詳解CSS三欄布局的5種方法”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“詳解CSS三欄布局的5種方法”吧!
題目:假設高度已知,請寫出三欄布局,其中左欄、右欄寬度各為300px,中間自適應.
這是一道經典的面試題,下面記錄了css布局的5種方法。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>三欄布局</title> <style> * { margin: 0; padding: 0; } </style> </head> <body> <!--5種解決方案--> </body>
<!-- 1\. 浮動解決方案 --> <scetion class="layout float"> <!-- 樣式 --> <style media="screen"> .layout.float article div { min-height: 80px; } .layout.float .left { width: 300px; background-color: red; float: left; } .layout.float .center { background-color: yellow; } .layout.float .right { width: 300px; background-color: blue; float: right; } </style> <!-- 結構 --> <!-- 注意:結構中 右浮動的div一定要寫在 center 的前面,否則無效. --> <h3>三欄布局</h3> <article> <div></div> <div></div> <div> <h3>浮動解決方案</h3> 1.這是三欄布局的浮動解決方案; 2.這是三欄布局的浮動解決方案; 3.這是三欄布局的浮動解決方案; 4.這是三欄布局的浮動解決方案; 5.這是三欄布局的浮動解決方案; 6.這是三欄布局的浮動解決方案; </div> </article> </scetion>
<!-- 2\. 絕對定位解決方案 --> <section class="layout absolute"> <!-- 樣式 --> <style> .layout.absolute article div { min-height: 80px; position: absolute; } .layout.absolute .left { width: 300px; background-color: red; left: 0; } .layout.absolute .center { background-color: yellow; left: 300px; right: 300px; } .layout.absolute .right { width: 300px; background-color: blue; right: 0; } </style> <!-- 結構 --> <h2>三欄布局</h2> <article> <div></div> <div> <h3>絕對定位解決方案</h3> 1.這是三欄布局的絕對定位解決方案; 2.這是三欄布局的絕對定位解決方案; 3.這是三欄布局的絕對定位解決方案; 4.這是三欄布局的絕對定位解決方案; 5.這是三欄布局的絕對定位解決方案; 6.這是三欄布局的絕對定位解決方案; </div> <div></div> </article> </section>
<!-- 3\. flexbox解決方案 --> <section class="layout flexbox"> <!-- 樣式 --> <style> /* flexbox解決方案在瀏覽器中顯示時被上面的絕對定位解決方案擋住了,設置一個margin-top */ .layout.flexbox { margin-top: 110px; } /* 設置最低高度 */ .layout.flexbox article div { min-height: 80px; } .layout.flexbox article { display: flex; } .layout.flexbox .left { width: 300px; background-color: red; } .layout.flexbox .center { /*center部分增長 使整行填充*/ flex: 1; background-color: yellow; } .layout.flexbox .right { width: 300px; background-color: blue; } </style> <!-- 結構 --> <h2>三欄布局</h2> <article> <div></div> <div> <h3>flexbox解決方案</h3> 1.這是三欄布局的flexbox解決方案; 2.這是三欄布局的flexbox解決方案; 3.這是三欄布局的flexbox解決方案; 4.這是三欄布局的flexbox解決方案; 5.這是三欄布局的flexbox解決方案; 6.這是三欄布局的flexbox解決方案; </div> <div></div> </article> </section>
<!-- 4\. 表格布局解決方案 --> <section class="layout table"> <!-- 樣式 --> <style> .layout.table .left-center-right { width: 100%; min-height: 80px; display: table; } .layout.table .left-center-right>div { display: table-cell; } .layout.table .left { width: 300px; background-color: red; } .layout.table .center { background-color: yellow; } .layout.table .right { width: 300px; background-color: blue; } </style> <!-- 結構 --> <h2>三欄布局</h2> <article> <div></div> <div> <h3>表格布局解決方案</h3> 1.這是三欄布局的表格布局解決方案; 2.這是三欄布局的表格布局解決方案; 3.這是三欄布局的表格布局解決方案; 4.這是三欄布局的表格布局解決方案; 5.這是三欄布局的表格布局解決方案; 6.這是三欄布局的表格布局解決方案; </div> <div></div> </article> </section>
<!-- 5\. 網格布局解決方案 --> <section class="layout grid"> <!-- 樣式 --> <style> .layout.grid .left-center-right { width: 100%; display: grid; /* 網格行高 */ grid-template-rows: 100px; /* 網格列寬 */ grid-template-columns: 300px auto 300px; } .layout.grid .left { background-color: red; } .layout.grid .center { background-color: yellow; } .layout.grid .right { background-color: blue; } </style> <!-- 結構 --> <h2>三欄布局</h2> <article> <div></div> <div> <h3>網格布局解決方案</h3> 1.這是三欄布局的網格布局解決方案; 2.這是三欄布局的網格布局解決方案; 3.這是三欄布局的網格布局解決方案; 4.這是三欄布局的網格布局解決方案; 5.這是三欄布局的網格布局解決方案; 6.這是三欄布局的網格布局解決方案; </div> <div></div> </article> </section>
將瀏覽器窗口壓窄,可以看到變化。由于上面的代碼中設置的高度是min-width,而不是設置的固定高度width,所以現在看到的也就是高度不固定的情況。
浮動解決方案中:center部分會被內容撐高并向兩邊擴充,兩邊盒子的大小不受影響。
絕對定位解決方案中:center部分會被內容撐高,不向兩邊擴充,兩邊盒子大小不受影響。
flexbox解決方案中:center部分會被內容撐高,并且兩邊的盒子與center高度始終保持一致。
這是因為在flex布局中,align-items屬性默認為stretch,如果設置為:align-items: center;或align-items: start;或align-items: end;或其他值,那么就不會自動保持一樣高。
表格布局解決方案中:center部分會被內容撐高,并且兩邊的盒子與center高度始終保持一致。
網格布局解決方案中:盒子大小都不變化,文字直接超出center部分。
感謝各位的閱讀,以上就是“詳解CSS三欄布局的5種方法”的內容了,經過本文的學習后,相信大家對詳解CSS三欄布局的5種方法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。