中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

新昌县| 股票| 黑龙江省| 南木林县| 曲麻莱县| 常德市| 青州市| 安新县| 思茅市| 云梦县| 大兴区| 和平县| 富蕴县| 南漳县| 扎囊县| 香河县| 临泉县| 南丰县| 文昌市| 蓬安县| 于田县| 镇康县| 湛江市| 红河县| 丹棱县| 曲靖市| 洛阳市| 瑞昌市| 嘉祥县| 莆田市| 盘山县| 天峻县| 崇义县| 霞浦县| 青海省| 永川市| 仪征市| 黔江区| 调兵山市| 电白县| 霍林郭勒市|