【整理】CSS佈局方案

segmentfault發表於2017-09-04

  我們在日常開發中經常遇到佈局問題,下面羅列幾種常用的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;
}