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

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

css如何實現(xiàn)六種自適應(yīng)兩欄布局方式-創(chuàng)新互聯(lián)

這篇文章主要介紹css如何實現(xiàn)六種自適應(yīng)兩欄布局方式,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

創(chuàng)新互聯(lián)專注于橋西網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供橋西營銷型網(wǎng)站建設(shè),橋西網(wǎng)站制作、橋西網(wǎng)頁設(shè)計、橋西網(wǎng)站官網(wǎng)定制、重慶小程序開發(fā)公司服務(wù),打造橋西網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供橋西網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

html結(jié)構(gòu)

  
        
            
            
        
   

方法一:flex布局

.wrapper{
    display:flex;
}
.left{
    width:200px;
    height:400px;
    background:black;
}
.right{
    flex:1;
    height:400px;
    background:red;
}

方法二:浮動

.left{
    float:left;
    width:200px;
    height:400px;
    background:black;
}
.right{
    background:red;
    height:400px;
}

方法三:BFC

.left{
    width:200px;
    height:400px;
    float:left;
    background:black;
}
.right{
    overflow:hidden;
    height:400px;
    background:red;
}

方法四:position絕對定位

.wrapper{
    position:relative;
}
.left{
    width:200px;
    height:400px;
    background:black;
}
.right{
    position:absolute;
    top:0;
    left:200px;
    right:0;
    bottom:0;
    background:red;
}

方法五:table布局

.wrapper{
    display:table;
    width:100%;
}
.left,.right{
    display:table-cell;
    height:400px
}
.left{
    background:black;
}
.right{
    background:red;
}

方法六:grid布局

.wrapper{
    display:grid;
    width:100%;
    height:400px;
    grid-template-columns:200px auto;
}
.left{
    background:black;
}
.right{
    background:red;
}

以上是“css如何實現(xiàn)六種自適應(yīng)兩欄布局方式”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


網(wǎng)頁標(biāo)題:css如何實現(xiàn)六種自適應(yīng)兩欄布局方式-創(chuàng)新互聯(lián)
轉(zhuǎn)載源于:http://weahome.cn/article/dsdhjj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部