.right{width:580px;
height:900px;
float:right;
background: #8aa7db}
.foot{with:100%;
height:100px;
margin: 0px auto;
background: #ff6600}
height:900px;
float:right;
background: #8aa7db}
.foot{with:100%;
height:100px;
margin: 0px auto;
background: #ff6600}
.top{width:100%;
height:200px;
margin:0,auto;
background:gray; }
.main{width:800px;
height:900px;
margin:0px auto;
background: red}
.left{width:200px;
height: 900px;
float:left;
background: blue;}
height:200px;
margin:0,auto;
background:gray; }
.main{width:800px;
height:900px;
margin:0px auto;
background: red}
.left{width:200px;
height: 900px;
float:left;
background: blue;}
.top{height:100px;background:#ccc;}
.main{height:600px;width:100%;}
.left{ height:600px;width:30%;float:left;background: blue}
.left_1{height:600px;width:5%;float:right;background: red}
.right{height:600px;width:70%;float:right;background: #6c9}
.foot{height:100px;background:orange;}
.main{height:600px;width:100%;}
.left{ height:600px;width:30%;float:left;background: blue}
.left_1{height:600px;width:5%;float:right;background: red}
.right{height:600px;width:70%;float:right;background: #6c9}
.foot{height:100px;background:orange;}
body{ margin:0; padding:0; font-size:30px; font-weight:bold}
div{ line-height:50px}
.main{ width:960px; height:600px; margin:0 auto}
.left{ width:300px; height:600px; background:#ccc; float:left;}/*左浮动样式*/
.right{ width:600px; height:600px; background:#FCC; float:right;}/*右浮动样式*/
这样就可以显示出最终效果了
div{ line-height:50px}
.main{ width:960px; height:600px; margin:0 auto}
.left{ width:300px; height:600px; background:#ccc; float:left;}/*左浮动样式*/
.right{ width:600px; height:600px; background:#FCC; float:right;}/*右浮动样式*/
这样就可以显示出最终效果了
对于我们设置的外围容器也就是上面的.main一般不需要设置高度,上面的代码是对的,因为外围的高度最好是由里面的内容撑起来,避免出错。
在上面浮动对两个元素造成了影响,一个就是.main(父容器),由于里面的元素是浮动的脱离了文档流,所以没有撑开;第二个就是下面的.footer元素,由于之前说的main没有撑开,所以.footer 到了.header元素下面(替代浮动元素在正常文档流中的位置)。
所以需要清除浮动,一般用两种方法1,在.main{ }添加overflow:hidden
2.在.footer{}里面添加clear:both;
在上面浮动对两个元素造成了影响,一个就是.main(父容器),由于里面的元素是浮动的脱离了文档流,所以没有撑开;第二个就是下面的.footer元素,由于之前说的main没有撑开,所以.footer 到了.header元素下面(替代浮动元素在正常文档流中的位置)。
所以需要清除浮动,一般用两种方法1,在.main{ }添加overflow:hidden
2.在.footer{}里面添加clear:both;
position:fixed; 相对于浏览器窗口绝对定位。
_position:absolute; 只有IE6能识别, IE6不支持fixed, 所以针对IE6使用absolute绝对定位, 一般还要配套一个expression脚本来实现
_position:absolute; 只有IE6能识别, IE6不支持fixed, 所以针对IE6使用absolute绝对定位, 一般还要配套一个expression脚本来实现
t/css">
body{ margin:0; padding:0; font-size:30px; color:#fff}
.top{height:100px;top:0;background:#999;}
.main{width:100%;height:400px;background:red;position:relative;
}
.left{ width:200px;height:400px; background:blue;}
.right{height:400px;margin:0 0 0 210px;background:green;}
.foot{heig
</head>
body{ margin:0; padding:0; font-size:30px; color:#fff}
.top{height:100px;top:0;background:#999;}
.main{width:100%;height:400px;background:red;position:relative;
}
.left{ width:200px;height:400px; background:blue;}
.right{height:400px;margin:0 0 0 210px;background:green;}
.foot{heig
</head>