最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

CSS實(shí)現(xiàn)響應(yīng)式布局的方法

  發(fā)布時(shí)間:2018-07-24 15:53:49   作者:酷酷的波   我要評論
這篇文章主要介紹了CSS實(shí)現(xiàn)響應(yīng)式布局的方法的相關(guān)資料,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧

用CSS實(shí)現(xiàn)響應(yīng)式布局

響應(yīng)式布局感覺很高大上,很難,但實(shí)際上只用CSS也能實(shí)現(xiàn)響應(yīng)式布局

要用的就是CSS中的沒接查詢,下面就介紹一下怎么運(yùn)用:

使用@media 的三種方法

1.直接在CSS文件中使用:

@media 類型 and (條件1) and (條件二){
    css樣式
}
@media screen and (max-width:1024px) {
    body{
        background-color: red;
    }
}

2.使用@import導(dǎo)入

@import url("css/moxie.css") all and (max-width:980px);

3.也是最常用的方法--直接使用link連接,media屬性用于設(shè)置查詢方法

<link rel="stylesheet" type="text/css" href="css/moxie.css" media=“all and (max-width=980px)”/>

下面是一個(gè)簡單的響應(yīng)式的布局HTMl代碼:

<!doctype html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>響應(yīng)式</title>
    <link rel="stylesheet" type="text/css" href="index.css"/>
<link rel="stylesheet" type="text/css" href="index01.css" media="screen and (max-width:1024px) and (min-width:720px)"/>
    <link rel="stylesheet" type="text/css" href="index02.css" media="screen and (max-width:720px)"/>
</head>
<body>
    <div class="header">頭部</div>
    <div class="main clearfix">
        <div class="left">左邊</div>
        <div class="center">中間</div>
        <div class="right">右邊</div>
    </div>
    <div class="footer">底部</div>
</body>
</html>

下面是CSS樣式:

*{
    margin:0;
    padding:0;
    text-align:center;
    color:yellow; 
}

.header{
    width:100%;
    height:100px;
    background:#ccc;
    line-height:100px;
}
.main{
    background:green;
    width:100%;
}
.clearfix:after{
    display:block;
    height:0;
    content:"";
    visibility:hidden;
    clear:both;
}
.left,.center,.right{
    float:left;
}
.left{
    width:20%;
    background:#112993;
    height:300px;
    font-size:50px;
    line-height:300px;
}
.center{
    width:60%;
    background:#ff0;
    height:400px;
    color:#fff;
    font-size:50px;
    line-height:400px;
}
.right{
    width:20%;
    background:#f0f;
    height:300px;
    font-size:50px;
    line-height:300px;
}
.footer{
    width:100%;
    height:50px;
    background:#000;
    line-height:50px;
}

<link rel="stylesheet" type="text/css" href="index01.css" media="screen and (max-width:1024px) and (min-width:720px)"/>樣式代碼

.right{
    float:none;
    width:100%;
    background:#f0f;
    clear:both;
}
.left{
    width:30%;
}
.center{
    width:70%;
}
.main{
    height:800px;
}

<link rel="stylesheet" type="text/css" href="index02.css" media="screen and (max-width:720px)"/>樣式代碼

.left,.center,.right{
    float:none;
    width:100%;
}

當(dāng)窗口大于1024px 時(shí),指揮被壓縮,并不會發(fā)生其他變化:

當(dāng)窗口小于1024px,大于720px的時(shí)候,右側(cè)欄取消浮動,在下邊顯示:

當(dāng)窗口小于720px的時(shí)候,左中右三欄,全都取消浮動,寬度100%:

好了,布局就這么簡單,細(xì)節(jié)的把握還靠不斷地練習(xí)。持續(xù)更新,歡迎大家指教

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論

沈阳市| 枝江市| 临沭县| 共和县| 教育| 石家庄市| 民和| 上思县| 宁波市| 皮山县| 梁平县| 桃江县| 霍州市| 德兴市| 贺兰县| 芜湖市| 武宣县| 新津县| 千阳县| 滦南县| 通城县| 剑河县| 武川县| 洪洞县| 鄂伦春自治旗| 井陉县| 乌兰县| 麻江县| 临沧市| 辽宁省| 西乡县| 化州市| 五大连池市| 蒙山县| 辉南县| 定边县| 泸州市| 清水河县| 比如县| 南澳县| 南和县|