91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

CSS網頁響應式布局怎么實現自動適配Pc/Pad/Phone設備

發布時間:2021-03-22 11:35:22 來源:億速云 閱讀:301 作者:小新 欄目:web開發

這篇文章給大家分享的是有關CSS網頁響應式布局怎么實現自動適配Pc/Pad/Phone設備的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

index

<!DOCTYPE html>
<html>
<head>
    <title>響應式布局</title>
    <meta charset="utf-8">
    <link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
    <div id="content">
        <div id="header">頭部</div>
        <div id="left">左側</div>
        <div id="center">中間</div>
        <div id="right">右側</div>
        <div id="footer">底部</div>
    </div>
</body>
</html>

CSS

*{
    margin: 0;
    padding: 0;
}

/*適應PC端 寬度大于1000px*/
@media screen and (min-width: 1000px) {
    #content{
        width: 960px;
        margin:0 auto;
    }

    #header{
        width: 100%;
        line-height: 100px;
        float: left;
        background: #333;
        color: #fff;
        text-align: center;
        font-size: 30px;
        margin-bottom: 10px;
    }

    #left{
        width: 200px;
        line-height: 400px;
        text-align: center;
        background: #333;
        float: left;
        font-size: 30px;
        color: #fff;
        margin-right: 10px;
    }

    #center{
        width: 540px;
        line-height: 400px;
        text-align: center;
        background: #333;
        float: left;
        font-size: 30px;
        color: #fff;
    }

    #right{
        width: 200px;
        line-height: 400px;
        text-align: center;
        background: #333;
        float: right;
        font-size: 30px;
        color: #fff;
    }

    #footer{
        width: 960px;
        height: 200px;
        background: #333;
        color: #fff;
        line-height: 200px;
        font-size: 30px;
        text-align: center;
        float: left;
        margin-top: 10px;
    }
}


/*適應pad端 寬度在640-1000之間*/
@media screen and (min-width: 640px) and (max-width: 1000px) {
    #content{
        width: 600px;
        margin:0 auto;
    }

    #header{
        width: 100%;
        line-height: 100px;
        float: left;
        background: #333;
        color: #fff;
        text-align: center;
        font-size: 30px;
        margin-bottom: 10px;
    }

    #left{
        width: 200px;
        line-height: 400px;
        text-align: center;
        background: #333;
        float: left;
        font-size: 30px;
        color: #fff;
        margin-right: 10px;
    }

    #center{
        width: 390px;
        line-height: 400px;
        text-align: center;
        background: #333;
        float: left;
        font-size: 30px;
        color: #fff;
    }

    #right{
        width: 600px;
        line-height: 300px;
        text-align: center;
        background: #333;
        float: left;
        font-size: 30px;
        color: #fff;
        margin-top: 10px;
    }

    #footer{
        width: 600px;
        height: 200px;
        background: #333;
        color: #fff;
        line-height: 200px;
        font-size: 30px;
        text-align: center;
        float: left;
        margin-top: 10px;
    }
}


/*適應移動端 寬度小于640*/
@media screen and (max-width: 639px){
    #content{
        width: 400px;
        margin:0 auto;
    }

    #header{
        width: 100%;
        line-height: 100px;
        float: left;
        background: #333;
        color: #fff;
        text-align: center;
        font-size: 30px;
        margin-bottom: 10px;
    }

    #left{
        width: 100%;
        line-height: 150px;
        text-align: center;
        background: #333;
        float: left;
        font-size: 30px;
        color: #fff;
        margin-bottom: 10px;
    }

    #center{
        width: 100%;
        line-height: 300px;
        text-align: center;
        background: #333;
        float: left;
        font-size: 30px;
        color: #fff;
    }

    #right{
        width: 100%;
        line-height: 150px;
        text-align: center;
        background: #333;
        float: left;
        font-size: 30px;
        color: #fff;
        margin-top: 10px;
    }

    #footer{
        width: 100%;
        height: 200px;
        background: #333;
        color: #fff;
        line-height: 200px;
        font-size: 30px;
        text-align: center;
        float: left;
        margin-top: 10px;
    }
}

通過@media screen and (限制范圍) 來控制網頁的布局,例如

min-width代表最小的限制,max-width代表最大的限制。

PC端

CSS網頁響應式布局怎么實現自動適配Pc/Pad/Phone設備

Pad端

CSS網頁響應式布局怎么實現自動適配Pc/Pad/Phone設備

Phone端

CSS網頁響應式布局怎么實現自動適配Pc/Pad/Phone設備

感謝各位的閱讀!關于“CSS網頁響應式布局怎么實現自動適配Pc/Pad/Phone設備”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

濮阳县| 甘谷县| 旺苍县| 湾仔区| 河曲县| 山西省| 内江市| 保定市| 临颍县| 昌都县| 岳西县| 和田县| 康定县| 广平县| 馆陶县| 清流县| 大同县| 海盐县| 白朗县| 界首市| 大关县| 霍林郭勒市| 平远县| 瑞丽市| 澄江县| 云浮市| 陆川县| 海兴县| 枣强县| 岳阳市| 阳曲县| 汾阳市| 万年县| 双江| 囊谦县| 铜川市| 盐亭县| 安远县| 象州县| 唐山市| 襄汾县|