等高佈局經常使用幾種方式

等高佈局的方式

指在同一個父容器中,子元素高度相等的佈局.

從等高佈局實現方式來講,又分爲兩類

  • 僞等高
子元素高度差依然存在,只是視覺上給人感受就是等高.
  • 真等高
子元素高度相等

先來看看僞等高實現方式css

  • 經過負margin和Padding實現

真等高實現方式html

  • table
  • absoult
  • flex
  • grid
  • js

僞等高之-負margin和padding

主要利用負margin來實現, 具體 負margin實現能夠參考下這篇文章node

<div class="layout parent">
        <div class="left"><p>left</p></div>
        <div class="center">
            <p>我是中間部分的內容</p>
            <p>我是中間部分的內容</p>
            <p>我是中間部分的內容</p>
            <p>我是中間部分的內容</p>
        </div>
        <div class="right"><p>right</p></div>
        <div style="clear: both;">11111111111</div>
    </div>
.parent{
    position: relative;
    overflow:hidden;
    color: #efefef;
}
.center,
.left,
.right {
    box-sizing: border-box;
    float: left;
}
.center {
    background-color: #2ECC71;
    width: 60%;
}

.left {
    width: 20%;
    background-color: #1ABC9C;
}
.right {
    width: 20%;
    background-color: #3498DB;
}
.left,
.right,
.center  {
    margin-bottom: -99999px;
    padding-bottom: 99999px;
}

真實等高之 - table佈局

<div class="layout parent">
        <div class="left"><p>left</p></div>
        <div class="center">
            <p>我是中間部分的內容</p>
            <p>我是中間部分的內容</p>
            <p>我是中間部分的內容</p>
            <p>我是中間部分的內容</p>
        </div>
        <div class="right"><p>right</p></div>
        <div style="clear: both;">11111111111</div>
    </div>
.parent{
        position: relative;
        display: table;
        color: #efefef;
    }
    .center,
    .left,
    .right {
        box-sizing: border-box;
        display: table-cell
    }
    .center {
        background-color: #2ECC71;
        width: 60%;
    }

    .left {
        width: 20%;
        background-color: #1ABC9C;
    }
    .right {
        width: 20%;
        background-color: #3498DB;
    }

真實等高之 - absolute

<div class="layout parent">
        <div class="left"><p>left</p> </div>
        <div class="center">
            <p>我是中間部分的內容</p>
            <p>我是中間部分的內容</p>
            <p>我是中間部分的內容</p>
            <p>我是中間部分的內容</p>
        </div>
        <div class="right"><p>right</p></div>
    </div>
.parent{
        position: absolute;
        color: #efefef;
        width:100%;
        height: 200px;
    }

    .left,
    .right,
    .center {
        position: absolute;
        box-sizing: border-box;
        top:0;
        bottom:0;
    }
    .center {
        background-color: #2ECC71;
        left: 200px;
        right: 300px;
    }

    .left {
        width: 200px;
        background-color: #1ABC9C;
    }
    .right {
        right:0;
        width: 300px;
        background-color: #3498DB;
    }

真實等高之 - flex

.parent{
    display: flex;
    color: #efefef;
    width:100%;
    height: 200px;
}

.left,
.right,
.center {
    box-sizing: border-box;
    flex: 1;
}
.center {
    background-color: #2ECC71;
}
.left {
    background-color: #1ABC9C;
}
.right {
    background-color: #3498DB;
}
<div class="layout parent">
    <div class="left"><p>left</p> </div>
    <div class="center">
        <p>我是中間部分的內容</p>
        <p>我是中間部分的內容</p>
        <p>我是中間部分的內容</p>
        <p>我是中間部分的內容</p>
    </div>
    <div class="right"><p>right</p></div>
</div>

真實等高之 - grid

.parent{
        display: grid;
        color: #efefef;
        width:100%;
        height: 200px;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .left,
    .right,
    .center {
        box-sizing: border-box;
    }
    .center {
        background-color: #2ECC71;
    }
    .left {
        background-color: #1ABC9C;
    }
    .right {
        background-color: #3498DB;
    }
<div class="layout parent">
    <div class="left"><p>left</p> </div>
    <div class="center">
        <p>我是中間部分的內容</p>
        <p>我是中間部分的內容</p>
        <p>我是中間部分的內容</p>
        <p>我是中間部分的內容</p>
    </div>
    <div class="right"><p>right</p></div>
</div>

真實等高之 - js

獲取全部元素中最高列,而後再去比對再進行修改
<div class="layout parent">
        <div class="left"><p>left</p> </div>
        <div class="center">
            <p>我是中間部分的內容</p>
            <p>我是中間部分的內容</p>
            <p>我是中間部分的內容</p>
            <p>我是中間部分的內容</p>
        </div>
        <div class="right"><p>right</p></div>
    </div>
.parent{
        overflow: auto;
        color: #efefef;
    }
    .left,
    .right,
    .center {
        float: left;
    }
    .center {
        width: 60%;
        background-color: #2ECC71;
    }
    .left {
        width: 20%;
        background-color: #1ABC9C;
    }
    .right {
        width: 20%;
        background-color: #3498DB;
    }
// 獲取最高元素的高度
    var nodeList = document.querySelectorAll(".parent > div");
    var arr = [].slice.call(nodeList,0);
    var maxHeight = arr.map(function(item){
        return item.offsetHeight
    }).sort(function(a, b){
        return a - b;
    }).pop();
    arr.map(function(item){
        if(item.offsetHeight < maxHeight) {
            item.style.height = maxHeight + "px";
        }
    });

圖片描述

平常使用過程的總結,有不足地方歡迎你們指出.佈局

相關文章
相關標籤/搜索