如下是我整理的DIV+CSS經常使用網頁佈局技巧,僅供學習與參考!css
第一種佈局:左邊固定寬度,右邊自適應寬度html
HTML Markupapp
<div id="left">Left sidebar</div>
<div id="content">Main Content</div>
CSS Codeide
<style type="text/css">佈局
*{
margin: 0;
padding: 0;
}post
#left {
float: left;
width: 220px;
background-color: green;
}學習
#content {
background-color: orange;
margin-left: 220px;/*==等於左邊欄寬度==*/
}
</style>htm
第二種佈局:左邊自適應寬度,右邊固定寬度get
HTML Markupit
<div id="wrapper" class="clearfix">
<div id="content-wrapper">
<div id="content">
左邊的內容
</div>
</div>
<div id="nav">
右邊的內容
</div>
</div>
CSS Code
body {
padding: 0;
margin: 0;
}
#wrapper {
width: 960px;
border: 1px solid #333;
margin: 0 auto;
}
#nav {
width: 200px;
float: right;
}
#content-wrapper {
margin-right: -200px;
float: left;
width: 100%;
}
#content {
margin-right: 200px;
padding: 0 10px;
}
.clearfix:after {
height: 0;
content: ".";
display: block;
clear: both;
visibility: hidden;
}
第三種佈局:三欄佈局,左右固定,中間自適應寬度
HTML Markup
div class="left">我是left</div>
<div class="right">我是right</div>
<div class="center">我是center</div>
CSS Code
body,div{ margin:0; padding:0;}
div{ height:200px; color:#F00;}
.left{ float:left; width:100px; background:#00f; _margin-right:-3px;}
.right{ float:right; width:100px; background:#0f0; _margin-left:-3px;}
.center{ background:#333; margin:0 100px; _margin:0 97px;}
IE6中的3px間隙bug
在ie6中,咱們看到各列之間有一條3px的間隔,這是隻有IE6纔有的問題。若是中間那列的margin-left和margin-right都爲0的話,則只要把左列的margin-right設爲-3px,右列的margin-left設爲-3px就好了。但若是把中間列的margin-left和margin-right分別爲左右兩列的寬度時,即便把左列的margin-right設爲-3px,右列的margin-left設爲-3px也仍是沒有效果。這時候還得把中間列的margin-left設爲左列寬度-3px,margin-right設爲右列寬度-3px才行
第四種佈局:等高佈局,即在實現上述三種佈局的同時,還實現左中右區域高度相同(內容不限,以最大高度爲準)