css3技术

DIVCSS网页布局常用的方法与技巧_div+css布局教程(2)

字号+ 作者:H5之家 来源:H5之家 2015-10-02 14:26 我要评论( )

#left{position:absolute;top:0px;left:0px;width:120px;} #middle{margin:0px190px0px190px;} #right{position:absolute;top:0px;right:0px;width:120px;} float定位一 xhtml代码: Example Source Code [] div id=

#left{position:absolute;top:0px;left:0px;width:120px;}
#middle{margin:0px190px0px190px;}
#right{position:absolute;top:0px;right:0px;width:120px;}



float定位一
xhtml代码:

div css xhtml xml Example Source Code

Example Source Code []

<div id=\"wrap\">
<div id=\"column\">
<div id=\"column1\">这里是第一列</div>
<div id=\"column2\">这里是第二列</div>
<div class=\"clear\"></div>/*用法web标准不建议,但是记住下面元素需要清除浮动*/
</div>
<divid=\"column3\">这里是第三列</div>
<divclass=\"clear\"></div>/*用法web标准不建议,但是记住下面元素需要清除浮动*/
</div>


CSS代码:

div css xhtml xml Example Source Code

Example Source Code []

#wrap{width:100;height:auto;}
#column{float:left;width:60;}
#column1{float:left;width:30;}
#column2{float:right;width:30;}
#column3{float:right;width:40;}
.clear{clear:both;}



float定位二
xhtml代码:

div css xhtml xml Example Source Code

Example Source Code []

<div id=\"center\"class=\"column\">
<h1>Thisisthemaincontent.</h1>
</div>
<div id=\"left\"class=\"column\">
<h2>Thisistheleftsidebar.</h2>
</div>
<div id=\"right\"class=\"column\">
<h2>Thisistherightsidebar.</h2>
</div>


CSS代码:

div css xhtml xml Example Source Code

Example Source Code []

body{
margin:0;
padding-left:200px;/*LCfullwidth*/
padding-right:190px;/*RCfullwidth CCpadding*/
min-width:200px;/*LCfullwidth CCpadding*/
}
.column{
position:relative;
float:left;
}
#center{
width:100;
}
#left{
width:200px;/*LCwidth*/
right:200px;/*LCfullwidth*/
margin-left:-100;
}
#right{
width:190px;/*RCwidth*/
margin-right:-100;
}

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
网友点评