明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

HTML+CSS與DIV如何完成排版布局

[摘要]這篇文章主要介紹了關(guān)于HTML+CSS和DIV如何實現(xiàn)排版布局,有著一定的參考價值,現(xiàn)在分享給大家,有需要的朋友可以參考一下HTML CSS + div實現(xiàn)排版布局1.網(wǎng)頁可以看成是由一個一個“盒子”組成,如圖:由上圖可以看出,頁面分為上(網(wǎng)站導(dǎo)航)、中、下(版權(quán)聲明)三個部分,中間部分又分為左(...
這篇文章主要介紹了關(guān)于HTML+CSS和DIV如何實現(xiàn)排版布局,有著一定的參考價值,現(xiàn)在分享給大家,有需要的朋友可以參考一下

HTML CSS + div實現(xiàn)排版布局

1.網(wǎng)頁可以看成是由一個一個“盒子”組成,如圖:

496770612-5b46ce6edc7b8_articlex[1].jpg

由上圖可以看出,頁面分為上(網(wǎng)站導(dǎo)航)、中、下(版權(quán)聲明)三個部分,
中間部分又分為左(商品分類)、中(主要部分)、右,這些版塊就像一個個
的盒子,這些"盒子"中放置著各種內(nèi)容,頁面就是由這些"盒子"拼湊起來

  • 案例布局分析:

1376923543-5b46cf378eab4_articlex[1].jpg

單列布局案例:

代碼如下:
<!doctype html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>單列布局</title>
    </head>
    <style>
        body{
            margin:0;
        }
        .box{
            width:960px;
            margin:0 auto;
        }
        .box .header{
            height:120px;
            border:1px solid #f00;
            line-height:120px;
        }
        .box .main{
            height:300px;
            border:1px solid #0f0;
            line-height:300px;
        }
        .box .footer{
            height:100px;
            border:1px solid #00f;
            line-height:100px;
        }
        p{
            text-align:center;
        }
    </style>    
    <body>        
        <p class="box">
            <p class="header">頭部</p>
            <p class="main">主題</p>
            <p class="footer">底部</p>
        </p>            
    </body>
</html>
運行結(jié)果:

4125081848-5b46d0aebc53f_articlex[1].png

雙列布局案例:

代碼如下:
<!doctype html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>雙列布局</title>
    </head>
    <style>
        body{
        margin:0;
        }
        .box{
            width:80%;
            margin:0 auto;
            overflow:hidden;
        }
        .box .left{
            width:30%;
            height:400px;
            background-color:#0f0;
            float:left;
        }
        .box .right{
            width:70%;
            height:400px;
            background-color:#f00;
            float:left;
        }
    </style>
    <body>        
        <p class="box">
            <p class="left"></p>
            <p class="right"></p>
        </p>        
    </body>
</html>
運行結(jié)果如下圖:

644704244-5b46d3b9c6eac_articlex[1].png

三列布局案例:

代碼如下:
<!doctype html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>三列布局</title>
    </head>
    <style>
    body{
        margin:0;
    }
    .box{
        width:960px;
        margin:0 auto;
        position:relative;
    }
    .box .left{
        width:200px;
        height:400px;
        background-color:#0f0;
        position:absolute;
    }
    .box .center{
        height:400px;
        background-color:#00f;
        margin:0 300px 0 200px;
    }
    .box .right{
        width:300px;
        height:400px;
        background-color:#f00;
        position:absolute;
        right:0;
        top:0;
    }
    </style>
    <body>        
        <p class="box">
            <p class="left"></p>
            <p class="center"></p>
            <p class="right"></p>
        </p>            
    </body>
</html>
運行結(jié)果如下圖:

301091421-5b46d50ad43e5_articlex[1].png

混合布局案例:

代碼如下:
<!doctype html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>混合布局</title>
    </head>
    <style>
    body{
        margin:0;
    }
    .box{
        width:960px;
        margin:0 auto;
    }
    .header{
        height:120px;
        background-color:#ddd;    
    }
    .main{
        height:400px;
        background-color:#f00;
        position:relative;
    }

    .main .left{
        width:200px;
        height:400px;
        position:absolute;
        left:0;
        top:0;
        background-color:#0fccaa;
    }
    .main .center{
        height:400px;
        margin:0 305px 0 205px;
        background-color:#123456;
    }

    .main .right{
        width:300px;
        height:400px;
        position:absolute;
        right:0;
        top:0;
        background-color:#ff0;
    }
    .footer{
        height:80px;
        background-color:#ddd;
    }
    </style>
    <body>        
        <p class="box">
            <p class="header"></p>
            <p class="main">
                <p class="left"></p>
                <p class="center"></p>
                <p class="right"></p>        
            </p>
            <p class="footer"></p>
        </p>    
    </body>
</html>
運行結(jié)果如下圖:

2619066118-5b46d5e7b3d8f_articlex[1].png

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,更多相關(guān)內(nèi)容請關(guān)注PHP中文網(wǎng)!

相關(guān)推薦:

詳解前端在html頁面之間傳遞參數(shù)的方法

以上就是HTML+CSS和DIV如何實現(xiàn)排版布局的詳細內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!


網(wǎng)站建設(shè)是一個廣義的術(shù)語,涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護的網(wǎng)站。