1. 程式人生 > >html與css的網頁佈局

html與css的網頁佈局

網頁佈局分為四類

1.一列布局   2.二列布局    3.三列布局   4.混合佈局

1.一列布局
<!DOCTYPE html>
<html>
<head>
    <title></title>
    <style type="text/css">
        body{margin: 0px;padding: 0px}
        .head{沒有寬度  height: 50px;background: black}
        .section{width: 600px;height: 300px
;
background: rosybrown; 盒子居中 margin: 0 auto} .foot{width: 600px;height: 250px;background: salmon; 盒子居中 margin: 0 auto} </style> </head> <body> <div class="head"></div> <div class="section"></div> <div class="foot"></div> </body> </html>

 效果圖