内射老阿姨1区2区3区4区_久久精品人人做人人爽电影蜜月_久久国产精品亚洲77777_99精品又大又爽又粗少妇毛片

CSS布局方案的示例分析-創(chuàng)新互聯(lián)

這篇文章給大家分享的是有關(guān)CSS布局方案的示例分析的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

目前成都創(chuàng)新互聯(lián)公司已為1000+的企業(yè)提供了網(wǎng)站建設(shè)、域名、虛擬主機(jī)、網(wǎng)站托管維護(hù)、企業(yè)網(wǎng)站設(shè)計(jì)、新榮網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶(hù)導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶(hù)和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。

居中布局

水平居中

1)使用inline-block+text-align

原理:先將子框由塊級(jí)元素改變?yōu)樾袃?nèi)塊元素,再通過(guò)設(shè)置行內(nèi)塊元素居中以達(dá)到水平居中。

用法:對(duì)子框設(shè)置display:inline-block,對(duì)父框設(shè)置text-align:center。

<div class="parent">
    <div class="child">DEMO</div>
</div>
.child{
    display: inline-block;
}
.parent{
    text-align: center;
}

缺點(diǎn):child里的文字也會(huì)水平居中,可以在.child添加text-align:left;還原

CSS布局方案的示例分析

2)使用absolute+transform

<div class="parent">
    <div class="child">DEMO</div>
</div>
.child{
    position: relative;
}
.parent{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

3)使用flex+justify-content

原理:通過(guò)CSS3中的布局利器flex中的justify-content屬性來(lái)達(dá)到水平居中。

用法:先將父框設(shè)置為display:flex,再設(shè)置justify-content:center。

<div class="parent">
    <div class="child">DEMO</div>
</div>
.parent{
    display: flex;
    justify-content: center;
}

缺點(diǎn):低版本瀏覽器(ie6 ie7 ie8)不支持

4)使用flex+margin

原理:通過(guò)CSS3中的布局利器flex將子框轉(zhuǎn)換為flex item,再設(shè)置子框居中以達(dá)到居中。

用法:先將父框設(shè)置為display:flex,再設(shè)置子框margin:0 auto。

<div class="parent">
    <div class="child">DEMO</div>
</div>
.parent{
    display: flex;
}
.child{
    margin: 0 auto;
}

垂直居中

1)使用absolute+transform

用法:先將父框設(shè)置為position:relative,再設(shè)置子框position:absolute,top:50%,transform:translateY(-50%)。

.parent {
    position:relative;
}
.child {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
}

2)使用flex+align-items

原理:通過(guò)設(shè)置CSS3中的布局利器flex中的屬性align-times,使子框垂直居中。

.parent {
    position:flex;
    align-items:center;
}

水平垂直居中

1)使用absolute+transform

.parent {
    position:relative;
}
.child {
    position:absolute;
    left:50%;
    top:50%;
    transform:tranplate(-50%,-50%);
}

2)使用flex+justify-content+align-items

.parent {
    display:flex;
    justify-content:center;
    align-items:center;
}

感謝各位的閱讀!關(guān)于“CSS布局方案的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

網(wǎng)站標(biāo)題:CSS布局方案的示例分析-創(chuàng)新互聯(lián)
新聞來(lái)源:http://m.rwnh.cn/article44/ddchhe.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App開(kāi)發(fā)、標(biāo)簽優(yōu)化、移動(dòng)網(wǎng)站建設(shè)、響應(yīng)式網(wǎng)站品牌網(wǎng)站建設(shè)、靜態(tài)網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)
怀远县| 阳信县| 阜新市| 新竹市| 松江区| 扬州市| 阿拉尔市| 南开区| 吉水县| 英德市| 新余市| 蓬安县| 佳木斯市| 成武县| 通州市| 宁夏| 台中县| 资兴市| 如东县| 社旗县| 长沙县| 西乌珠穆沁旗| 石嘴山市| 汉川市| 陇西县| 六盘水市| 出国| 庄浪县| 阿荣旗| 措勤县| 嫩江县| 上虞市| 屏东市| 辽阳县| 顺平县| 古蔺县| 长岭县| 丽江市| 抚宁县| 长武县| 富锦市|