這篇文章主要介紹了關於HTML CSS和DIV如何實現排版佈局,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
#由上圖可以看出,頁面分為上(網站導航)、中、下(版權聲明)三個部分,
中間部分又分為左(商品分類)、中(主要部分)、右,這些版塊就像一個個
的盒子,這些"盒子"中放置著各種內容,頁面就是由這些"盒子"拼湊起來
案例佈局分析:
nbsp;html> <meta> <title>单列布局</title> <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> <p> </p><p>头部</p> <p>主题</p> <p>底部</p>
運行結果:
nbsp;html> <meta> <title>双列布局</title> <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> <p> </p><p></p> <p></p>
執行結果如下圖:
nbsp;html> <meta> <title>三列布局</title> <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> <p> </p><p></p> <p></p> <p></p>
運行結果如下圖:
nbsp;html> <meta> <title>混合布局</title> <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> <p> </p><p></p> <p> </p><p></p> <p></p> <p></p> <p></p>
運行結果如下圖:
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
詳解前端在html頁面之間傳遞參數的方法 ######以上是HTML+CSS和DIV如何實現排版佈局的詳細內容。更多資訊請關注PHP中文網其他相關文章!