真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

css有什么方式可以實(shí)現(xiàn)等高布局-創(chuàng)新互聯(lián)

css有什么方式可以實(shí)現(xiàn)等高布局?首先我們得知道什么是等高布局?小編給大家總結(jié)了以下內(nèi)容,一起往下看吧。

創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比賀州網(wǎng)站開(kāi)發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式賀州網(wǎng)站制作公司更省心,省錢(qián),快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋賀州地區(qū)。費(fèi)用合理售后完善,10多年實(shí)體公司更值得信賴。

css有什么方式可以實(shí)現(xiàn)等高布局

指在同一個(gè)父容器中,子元素高度相等的布局。

從等高布局實(shí)現(xiàn)方式來(lái)說(shuō)分為兩類:

1、偽等高

子元素高度差依然存在,只是視覺(jué)上給人感覺(jué)就是等高。

2、真等高

子元素高度相等。

偽等高實(shí)現(xiàn)方式:

通過(guò)負(fù)margin和Padding實(shí)現(xiàn)

真等高實(shí)現(xiàn)方式:

1、table

2、absoult

3、flex

4、grid

5、js

偽等高之-負(fù)margin和padding

主要利用負(fù)margin來(lái)實(shí)現(xiàn),如下:

 

left

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

right

11111111111
.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;
}

真實(shí)等高之 - table布局

  

left

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

right

11111111111
    .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;
    }

真實(shí)等高之 - absolute

    

left

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

right

   .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;
    }

真實(shí)等高之 - 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;
}

left

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

right

真實(shí)等高之 - 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;
    }

left

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

right

真實(shí)等高之 - js

獲取所有元素中最高列,然后再去比對(duì)再進(jìn)行修改

    

left

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

我是中間部分的內(nèi)容

right

    .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";
        }
    });

如圖:

css有什么方式可以實(shí)現(xiàn)等高布局

關(guān)于css有什么方式可以實(shí)現(xiàn)等高布局就分享到這里了,當(dāng)然并不止以上和大家分析的辦法,不過(guò)小編可以保證其準(zhǔn)確性是絕對(duì)沒(méi)問(wèn)題的。希望以上內(nèi)容可以對(duì)大家有一定的參考價(jià)值,可以學(xué)以致用。如果喜歡本篇文章,不妨把它分享出去讓更多的人看到。


分享文章:css有什么方式可以實(shí)現(xiàn)等高布局-創(chuàng)新互聯(lián)
本文地址:http://weahome.cn/article/pidec.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部