溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

CSS等高布局的方式有哪些

發(fā)布時間:2021-09-15 14:35:19 來源:億速云 閱讀:112 作者:柒染 欄目:web開發(fā)

這篇文章給大家介紹CSS等高布局的方式有哪些,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

等高布局是指子元素在父元素中高度相等的布局方式。等高布局的實現(xiàn)包括偽等高和真等高,偽等高只是看上去等高而已,真等高是實實在在的等高。本文將介紹邊框模擬、負(fù)margin這兩種偽等高以及table實現(xiàn)、absolute實現(xiàn)、flex實現(xiàn)和js判斷這四種真等高布局

偽等高

邊框模擬  

因為元素邊框和元素高度始終是相同高度,用元素的邊框顏色來偽裝左右兩個兄弟元素的背景色。然后將左右兩個透明背景的元素使用absolute覆蓋在中間元素的左右邊框上,實現(xiàn)視覺上的等高效果

[注意]左右兩側(cè)元素高度不能大于中間元素高度,否則無法撐開容器高度

CSS Code復(fù)制內(nèi)容到剪貼板

  1. <style>   
    body,p{margin: 0;}   
    .parent{   
        position: relative;   
    }   
    .center{   
        box-sizing:border-box;   
        padding: 0 20px;   
        background-clip: content-box;   
        border-left: 210px solid lightblue;   
        border-right: 310px solid lightgreen;   
    }   
    .left{   
        position: absolute;   
        top: 0;   
        left: 0;   
        width: 200px;   
    }   
    .rightright{   
        position: absolute;   
        top: 0;   
        rightright: 0;   
        width: 300px;   
    }   
    </style>

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. <div class="parent" style="background-color: lightgrey;">  
        <div class="left">  
            <p>left</p>  
        </div>     
        <div class="center" style="background-color: pink;">  
            <p>center</p>  
            <p>center</p>  
        </div>             
        <div class="right">  
            <p>right</p>  
        </div>           
    </div>

CSS等高布局的方式有哪些

負(fù)margin  

因為背景是在padding區(qū)域顯示的,設(shè)置一個大數(shù)值的padding-bottom,再設(shè)置相同數(shù)值的負(fù)的margin-bottom,使背景色鋪滿元素區(qū)域,又符合元素的盒模型的計算公式,實現(xiàn)視覺上的等高效果

[注意]如果頁面中使用<a>錨點跳轉(zhuǎn)時,將會隱藏部分文字信息

[注意]如果頁面中的背景圖片定位到底部,將會看不到背景圖片

CSS Code復(fù)制內(nèi)容到剪貼板

  1. <style>   
    body,p{margin: 0;}   
    .parent{   
        overflow: hidden;   
    }   
    .left,.centerWrap,.rightright{   
        float: left;   
        width: 50%;   
        padding-bottom: 9999px;   
        margin-bottom: -9999px;   
    }   
    .center{   
        margin: 0 20px;   
    }   
    .left,.rightright{   
        width: 25%;   
    }   
    </style>

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. <div class="parent" style="background-color: lightgrey;">  
        <div class="left" style="background-color: lightblue;">  
            <p>left</p>  
        </div>     
        <div class="centerWrap">  
            <div class="center" style="background-color: pink;">  
                <p>center</p>  
                <p>center</p>  
            </div>            
        </div>  
                
        <div class="right" style="background-color: lightgreen;">  
            <p>right</p>  
        </div>

CSS等高布局的方式有哪些

真等高

table  

table元素中的table-cell元素默認(rèn)就是等高的

CSS Code復(fù)制內(nèi)容到剪貼板

  1. <style>   
    body,p{margin: 0;}   
    .parent{   
        display: table;   
        width: 100%;   
        table-layout: fixed;   
    }   
    .left,.centerWrap,.rightright{   
        display: table-cell;   
    }   
    .center{   
        margin: 0 20px;   
    }   
    </style>

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. <div class="parent" style="background-color: lightgrey;">  
        <div class="left" style="background-color: lightblue;">  
            <p>left</p>  
        </div>     
        <div class="centerWrap">  
            <div class="center" style="background-color: pink;">  
                <p>center</p>  
                <p>center</p>  
            </div>            
        </div>    
        <div class="right" style="background-color: lightgreen;">  
            <p>right</p>  
        </div>

CSS等高布局的方式有哪些

absolute  

設(shè)置子元素的top:0;bottom:0;使得所有子元素的高度都和父元素的高度相同,實現(xiàn)等高效果

CSS Code復(fù)制內(nèi)容到剪貼板

  1. <style>   
    body,p{margin: 0;}   
    .parent{   
        position: relative;   
        height: 40px;   
    }   
    .left,.center,.rightright{   
        position: absolute;   
        top: 0;   
        bottombottom: 0;   
    }   
    .left{   
        left: 0;   
        width: 100px;   
    }   
    .center{   
        left: 120px;   
        rightright: 120px;   
    }   
    .rightright{   
        width: 100px;   
        rightright: 0;   
    }   
    </style>

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. <div class="parent" style="background-color: lightgrey;">  
        <div class="left" style="background-color: lightblue;">  
            <p>left</p>  
        </div>     
        <div class="center" style="background-color: pink;">  
            <p>center</p>  
            <p>center</p>  
        </div>             
        <div class="right" style="background-color: lightgreen;">  
            <p>right</p>  
        </div>           
    </div>

CSS等高布局的方式有哪些

flex  

flex中的伸縮項目默認(rèn)都拉伸為父元素的高度,也實現(xiàn)了等高效果

CSS Code復(fù)制內(nèi)容到剪貼板

  1. <style>   
    body,p{margin: 0;}   
    .parent{   
        display: flex;   
    }   
    .left,.center,.rightright{   
        flex: 1;   
    }   
    .center{   
        margin: 0 20px;   
    }   
    </style>

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. <div class="parent" style="background-color: lightgrey;">  
        <div class="left" style="background-color: lightblue;">  
            <p>left</p>  
        </div>     
        <div class="center" style="background-color: pink;">  
            <p>center</p>  
            <p>center</p>  
        </div>             
        <div class="right" style="background-color: lightgreen;">  
            <p>right</p>  
        </div>           
    </div>

CSS等高布局的方式有哪些

js  

當(dāng)子元素高度不同時,進(jìn)行js判斷,增加較低子元素的padding-bottom,使得各個子元素實現(xiàn)等高效果

CSS Code復(fù)制內(nèi)容到剪貼板

  1. <style>   
    body,p{margin: 0;}   
    .parent{overflow: hidden;}   
    .left,.center,.rightright{   
        float: left;   
        width: 25%;   
    }       
    .center{   
        width: 50%;   
        padding: 0 20px;   
        background-clip: content-box;   
        box-sizing: border-box;   
    }   
    </style>  
    XML/HTML Code復(fù)制內(nèi)容到剪貼板
    <div class="parent" id="parent" style="background-color: lightgrey;">  
        <div class="left" style="background-color: lightblue;">  
            <p>left</p>  
        </div>     
        <div class="center" style="background-color: pink;">  
            <p>center</p>  
            <p>center</p>  
        </div>             
        <div class="right" style="background-color: lightgreen;">  
            <p>right</p>  
        </div>           
    </div>  
    JavaScript Code復(fù)制內(nèi)容到剪貼板
    <script>   
    function getCSS(obj,style){   
        if(window.getComputedStyle){   
            return getComputedStyle(obj)[style];   
        }   
        return obj.currentStyle[style];   
    }   
    var oParent = document.getElementById('parent');   
    var oLeft = oParent.getElementsByTagName('div')[0];   
    var oCenter = oParent.getElementsByTagName('div')[1];   
    var oRight = oParent.getElementsByTagName('div')[2];   
    function eqHeight(obj1,obj2){   
        var oDis = obj1.clientHeight - obj2.clientHeight;   
        if(oDis > 0){   
            obj2.style.paddingBottom = parseFloat(getCSS(obj2,'padding-bottom')) + oDis + 'px';   
        }else{   
            obj1.style.paddingBottom = parseFloat(getCSS(obj1,'padding-bottom')) +  Math.abs(oDis) + 'px';   
        }   
    }   
    eqHeight(oLeft,oCenter);   
    eqHeight(oLeft,oRight);   
    </script>

CSS等高布局的方式有哪些

關(guān)于CSS等高布局的方式有哪些就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI