「前端那些事兒」③ CSS 佈局方案
我們在日常開發中經常遇到佈局問題,下面羅列幾種常用的css佈局方案 話不多說,上程式碼!
居中佈局
以下居中佈局均以不定寬為前提,定寬情況包含其中
1、水平居中

a) inline-block + text-align
.parent{ text-align: center; } .child{ display: inline-block; } 複製程式碼
tips:此方案相容性較好,可相容至IE8,對於IE567並不支援inline-block,需要使用css hack進行相容
b) table + margin
.child{ display: table; margin: 0 auto; } 複製程式碼
tips:此方案相容至IE8,可以使用 <table/>
代替css寫法,相容性良好
c) absolute + transform
.parent{ position: relative; height:1.5em; } .child{ position: absolute; left: 50%; transform: translateX(-50%); } 複製程式碼
tips:此方案相容至IE9,因為transform相容性限制,如果 .child
為定寬元素,可以使用以下寫法,相容性極佳
.parent{ position: relative; height:1.5em; } .child{ position: absolute; width:100px; left: 50%; margin-left:-50px; } 複製程式碼
d) flex + justify-content
.parent{ display: flex; justify-content: center; } .child{ margin: 0 auto; } 複製程式碼
tips:flex是一個強大的css,生而為佈局,它可以輕鬆的滿足各種居中、對其、平分的佈局要求,但由於現瀏覽器相容性問題,此方案很少被使用,但是值得期待瀏覽器相容性良好但那一天!
2、垂直

a) table-cell + vertial-align
.parent{ display: table-cell; vertical-align: middle; } 複製程式碼
tips:可替換成 <table />
佈局,相容性良好
b) absolute + transform
.parent{ position: relative; } .child{ position: absolute; top: 50%; transform: translateY(-50%); } 複製程式碼
tips:存在css3相容問題,定寬相容性良好
c) flex + align-items
.parent{ display: flex; align-items: center; } 複製程式碼
tips:高版本瀏覽器相容,低版本不適用
3、水平垂直

a) inline-block + table-cell + text-align + vertical-align
.parent{ text-align: center; display: table-cell; vertical-align: middle; } .child{ display: inline-block; } 複製程式碼
tips:相容至IE8 b) absolute + transform
.parent{ position: relative; } .child{ position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); } 複製程式碼
tips:相容性稍差,相容IE10以上 c) flex
.parent{ display: flex; justify-content: center; align-items: center; } 複製程式碼
tips:相容差
多列布局
1、一列定寬,一列自適應

a) float + margin
.left{ float: left; width: 100px; } .right{ margin-left: 120px; } 複製程式碼
tips:此方案對於定寬佈局比較好,不定寬佈局推薦方法b b) float + overflow
.left{ float: left; width: 100px; margin-right: 20px; } .right{ overflow: hidden; } 複製程式碼
tips:個人常用寫法,此方案不管是多列定寬或是不定寬,都可以完美實現,同時可以實現登高佈局 c) table
.parent{ display: table; width: 100%; table-layout: fixed; } .left,.right{ display: table-cell; } .left{ width: 100px; padding-right: 20px; } 複製程式碼
d) flex
.parent{ display: flex; } .left{ width: 100px; padding-right: 20px; } .right{ flex: 1; } 複製程式碼
2、多列定寬,一列自適應

a) float + overflow
.left,.center{ float: left; width: 100px; margin-right: 20px; } .right{ overflow: hidden; } 複製程式碼
b) table
.parent{ display: table; width: 100%; table-layout: fixed; } .left,.center,.right{ display: table-cell; } .right{ width: 100px; padding-right: 20px; } 複製程式碼
c) flex
.parent{ display: flex; } .left,.center{ width: 100px; padding-right: 20px; } .right{ flex: 1; } 複製程式碼
3、一列不定寬,一列自適應

a) float + overflow
.left{ float: left; margin-right: 20px; } .right{ overflow: hidden; } .left p{width: 200px;} 複製程式碼
b) table
.parent{ display: table; width: 100%; } .left,.right{ display: table-cell; } .left{ width: 0.1%; padding-right: 20px; } .left p{width:200px;} 複製程式碼
c) flex
.parent{ display: flex; } .left{ margin-right: 20px; } .right{ flex: 1; } .left p{width: 200px;} 複製程式碼
4、多列不定寬,一列自適應

a) float + overflow
.left,.center{ float: left; margin-right: 20px; } .right{ overflow: hidden; } .left p,.center p{ width: 100px; } 複製程式碼
5、等分

a) float + margin
.parent{ margin-left: -20px; } .column{ float: left; width: 25%; padding-left: 20px; box-sizing: border-box; } 複製程式碼
b) table + margin
.parent-fix{ margin-left: -20px; } .parent{ display: table; width:100%; table-layout: fixed; } .column{ display: table-cell; padding-left: 20px; } 複製程式碼
c) flex
.parent{ display: flex; } .column{ flex: 1; } .column+.column{ margin-left:20px; } 複製程式碼
6、等高

a) float + overflow
.parent{ overflow: hidden; } .left,.right{ padding-bottom: 9999px; margin-bottom: -9999px; } .left{ float: left; width: 100px; } .right{ overflow: hidden; } 複製程式碼
b) table
.parent{ display: table; width: 100%; } .left{ display:table-cell; width: 100px; margin-right: 20px; } .right{ display:table-cell; } 複製程式碼
c) flex
.parent{ display:flex; width: 100%; } .left{ width: 100px; } .right{ flex:1; } 複製程式碼
並排等分,單排對齊靠左佈局
效果圖

flex
.main { display: flex; flex-flow: row wrap; justify-content: space-between; } .item { display: inline-block; } .empty{ height: 0; visibility: hidden; } 複製程式碼
具體詳解請見下文 ofollow,noindex">github.com/zwwill/blog…
聖盃佈局&雙飛翼佈局
此處僅為程式碼展示,差別講解請移駕下文 【方案】聖盃佈局&雙飛翼佈局
聖盃佈局

【demo】 codepen.io/zwwill/pen/…
<div class="container"> <div class="header">header</div> <div class="wrapper clearfix"> <div class="main col">main</div> <div class="left col">left</div> <div class="right col">right</div> </div> <div class="footer">footer</div> </div> 複製程式碼
.container {width: 500px; margin: 50px auto;} .wrapper {padding: 0 100px 0 100px;} .col {position: relative; float: left;} .header,.footer {height: 50px;} .main {width: 100%;height: 200px;} .left {width: 100px; height: 200px; margin-left: -100%;left: -100px;} .right {width: 100px; height: 200px; margin-left: -100px; right: -100px;} .clearfix::after {content: ""; display: block; clear: both; visibility: hidden; height: 0; overflow: hidden;} 複製程式碼
雙飛翼佈局

ps: “這不是一樣的圖嘛?” “對!就是一樣的,因為是解決同一種問題的嘛。”
【demo】 codepen.io/zwwill/pen/…
<div class="container"> <div class="header">header</div> <div class="wrapper clearfix"> <div class="main col"> <div class="main-wrap">main</div> </div> <div class="left col">left</div> <div class="right col">right</div> </div> <div class="footer">footer</div> </div> 複製程式碼
.col {float: left;} .header {height: 50px;} .main {width: 100%;} .main-wrap {margin: 0 100px 0 100px;height: 200px;} .left {width: 100px; height: 200px; margin-left: -100%;} .right {width: 100px; height: 200px; margin-left: -100px;} .footer {height: 50px;} .clearfix::after {content: ""; display: block; clear: both; visibility: hidden; height: 0; overflow: hidden;} 複製程式碼
定位佈局
簡單的絕對定位即可解決問題,為啥還要搞什麼聖盃和雙飛翼? 原因
<div class="header">header</div> <div class="wrapper"> <div class="main col"> main </div> <div class="left col"> left </div> <div class="right col"> right </div> </div> <div class="footer">footer</div> 複製程式碼
.wrapper { position: relative; } .main { margin:0 100px;} .left { position: absolute; left: 0; top: 0;} .right { position: absolute; right: 0; top: 0;} 複製程式碼
以上所有demo的原始碼 github: github.com/zwwill/css-…
轉載請標註出處
首發: github.com/zwwill/blog… 作者: 木羽