首頁  >  文章  >  web前端  >  使用css3實現簡單的響應式佈局(程式碼)

使用css3實現簡單的響應式佈局(程式碼)

PHPz
PHPz原創
2017-04-03 15:09:572699瀏覽

本文簡單的解說如何使用css3實作簡單的響應式佈局:

#css3檔:

*{
    margin:0px;
    padding: 0px;}.heading,.container,.footing{
    margin: 10px auto;}.heading{
    height: 100px;
    background-color: red;}.left,.right,.main{
    height: 300px;
    background-color: yellow;}.footing{
    height: 100px;
    background-color: gray;}
<!--media="only screen and (max-width:640px)" 这句话的意思是:只要当渲染屏幕的宽度不大于640px的时候才会使用这个样式表-->
@media screen and (min-width: 960px){    .heading,    .container,    .footing{
        width:960px;

    }    .left,    .main,    .right{
        float: left;
        height: 500px;
    }    .left,    .right{
        width:200px;

    }    .main{
        margin: 0px 5px;
        width:550px;
    }    .container{
        height: 500px;
    }
}
@media screen and (min-width: 600px) and (max-width: 960px){    .heading,    .container,    .footing{
        width: 600px;

    }    .left,    .main{
        float: left;
        height:400px;

    }    .right{
        display: none;
    }    .left{
        width: 160px;

    }    .main{
        width: 435px;
        margin-left: 5px;
    }    .container{
        height: 400px;
    }
}

@media screen and (max-width: 600px){    .heading,    .container,    .footing{
        width: 400px;
    }    .left,    .right{
        width: 400px;
        height: 100px;
    }    .main{
        margin-top: 10px;
        width:400px;
        height:200px;
    }    .right{
        margin-top: 10px;

    }    .container{
        height: 420px;
    }
}

html5檔案:

<!DOCTYPE html><html><head>
    <meta charset="UTF-8">
    <meta name ="viewport" content="width = device-width,initial-scale=1">
    <title>index01</title>
    <link href="style01.css" type="text/css" rel="stylesheet"></head><body>
    <p></p>
    <p>
        <p></p>
        <p></p>
        <p></p>
    </p>
    <p></p></body></html>

本文的程式碼,可以實作同一個介面,在不同寬度的渲染寬度下顯示不同的佈局。

以上是使用css3實現簡單的響應式佈局(程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn