|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
DIV本身就是容器性质的,你不但可以内嵌table还可以内嵌文本和其它的HTML代码CSS是CascadingstyleSheets的简称,中文译作“层叠样式表单”。
CSS结构经常使用的办法:float:none|left|right
取值:
none:默许值。工具不飘浮
left:文本流向工具的右侧
right:文本流向工具的右边
它是如何事情的,看个一行两列的例子
xhtml代码:
以下是援用片断:
<divid="wrap">
<divid="column1">这里是第一列</div>
<divid="column2">这里是第二列</div>
<divclass="clear"></div>/*这是违反web尺度企图的,只是想申明在它上面的元素必要扫除浮动*/
</div>
CSS代码:
以下是援用片断:
#wrap{width:100;height:auto;}
#column1{float:left;width:40;}
#column2{float:right;width:60;}
.clear{clear:both;}
position:static|absolute|fixed|relative
取值:
static:默许值。无特别定位,工具遵守HTML定位划定规矩
absolute:将工具从文档流中拖出,利用left,right,top,bottom等属性相对其最靠近的一个最有定位设置的父工具举行相对定位。假如不存在如许的父工具,则根据body工具。而其层叠经由过程z-index属性界说
fixed:未撑持。工具定位服从相对(absolute)体例。可是要恪守一些标准
relative:工具不成层叠,但将根据left,right,top,bottom等属性在一般文档流中偏移地位
它来完成一行两列的例子
xhtml代码:
以下是援用片断:
<divid="wrap">
<divid="column1">这里是第一列</div>
<divid="column2">这里是第二列</div>
</div>
CSS代码:
以下是援用片断:
#wrap{position:relative;/*绝对定位*/width:770px;}
#column1{position:absolute;top:0;left:0;width:300px;}
#column2{position:absolute;top:0;right:0;width:470px;}
他们的区分在哪?
明显,float是绝对定位的,会跟着扫瞄器的巨细和分辩率的变更而改动,而position就不可了,以是一样平常情形下仍是float结构!
CSS经常使用结构实例
单行一列
以下是援用片断:
body{margin:0px;padding:0px;text-align:center;}
#content{margin-left:auto;margin-right:auto;width:400px;}
两行一列
以下是援用片断:
body{margin:0px;padding:0px;text-align:center;}
#content-top{margin-left:auto;margin-right:auto;width:400px;}
#content-end{margin-left:auto;margin-right:auto;width:400px;}
三行一列
以下是援用片断:
body{margin:0px;padding:0px;text-align:center;}
#content-top{margin-left:auto;margin-right:auto;width:400px;width:370px;}
#content-mid{margin-left:auto;margin-right:auto;width:400px;}
#content-end{margin-left:auto;margin-right:auto;width:400px;}
单行两列
以下是援用片断:
#bodycenter{width:700px;margin-right:auto;margin-left:auto;overflow:auto;}
#bodycenter#dv1{float:left;width:280px;}
#bodycenter#dv2{float:right;width:420px;}
两行两列
以下是援用片断:
#header{width:700px;margin-right:auto;margin-left:auto;overflow:auto;}
#bodycenter{width:700px;margin-right:auto;margin-left:auto;overflow:auto;}
#bodycenter#dv1{float:left;width:280px;}
#bodycenter#dv2{float:right;width:420px;}
三行两列
以下是援用片断:
#header{width:700px;margin-right:auto;margin-left:auto;}
#bodycenter{width:700px;margin-right:auto;margin-left:auto;}
#bodycenter#dv1{float:left;width:280px;}
#bodycenter#dv2{float:right;width:420px;}
#footer{width:700px;margin-right:auto;margin-left:auto;overflow:auto;clear:both;}
单行三列
相对定位
以下是援用片断:
#left{position:absolute;top:0px;left:0px;width:120px;}
#middle{margin:0px190px0px190px;}
#right{position:absolute;top:0px;right:0px;width:120px;}
float定位
xhtml代码:
以下是援用片断:
<divid="wrap">
<divid="column">
<divid="column1">这里是第一列</div>
<divid="column2">这里是第二列</div>
<divclass="clear"></div>/*用法web尺度不倡议,可是记着上面元素必要扫除浮动*/
</div>
<divid="column3">这里是第三列</div>
<divclass="clear"></div>/*用法web尺度不倡议,可是记着上面元素必要扫除浮动*/
</div>CSS代码:
以下是援用片断:
#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代码:
以下是援用片断:
<divid="center"class="column">
<h1>Thisisthemaincontent.</h1>
</div>
<divid="left"class="column">
<h2>Thisistheleftsidebar.</h2>
</div>
<divid="right"class="column">
<h2>Thisistherightsidebar.</h2>
</div>CSS代码:
以下是援用片断:
body{
margin:0;
padding-left:200px;/*LCfullwidth*/
padding-right:190px;/*RCfullwidthCCpadding*/
min-width:200px;/*LCfullwidthCCpadding*/
}
.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;
}
<b>
</p>
属性值就追加上去,重复的属性值就以最后一个为准。这里要注意的是,样式的先后不是根据页面上应用的名字顺序,而是样式表里的样式顺序。 |
|