`

CSS:浮动元素(float)的认识

阅读更多

float属性的值可以是leftright或者none

用两个例子来说明吧:

1 图文混排

<div id="picture">
<img src="bill.jpg" alt="Bill Gates">
</div>

<p>causas naturales et antecedentes,
idciro etiam nostrarum voluntatum...</p>


#picture {
float:left;
width: 100px;

}

2 一行两列

xhtml代码:

Example Source Code

<div id="wrap">

<div id="column1">这里是第一列</div>

<div id="column2">这里是第二列</div>

/*这是违背web标准意图的,只是想说明在它下面的元素需要清除浮动*/

</div>

CSS代码:

Example Source Code

#wrap{width:100;height:auto;}

#column1{float:left;width:40;}

#column2{float:right;width:60;}

.clear{clear:both;}

一般地,float要和clear一起使用!

clear属性

CSS属性clear用于控制浮动元素的后继元素的行为。

缺省地,后继元素将向上移动,以填补由于前面元素的浮动而空出的可用空间。在前面的例子中,文本自动上移到了比尔盖茨的图片旁。

clear属性的值可以是leftrightbothnone。原则是这样的:如果一个盒子的clear属性被设为“both”,那么该盒子的上边距将始终处于前面的浮动盒子(如果存在的话)的下边距之下。

显然,float是相对定位的,会随着浏览器的大小和分辨率的变化而改变,而position就不行了,所以一般情况下还是float布局!

两行一列

Example Source Code

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;}

三行一列

Example Source Code

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;}

单行两列

Example Source Code

#bodycenter{width:700px;margin-right:auto;margin-left:auto;overflow:auto;}

#bodycenter#dv1{float:left;width:280px;}

#bodycenter#dv2{float:right;width:420px;}

两行两列

Example Source Code

#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;}

三行两列

Example Source Code

#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;}

单行三列

绝对定位

Example Source Code

#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="wrap">

<div id="column">

<div id="column1">这里是第一列</div>

<div id="column2">这里是第二列</div>

/*用法web标准不建议,但是记住下面元素需要清除浮动*/

</div>

<divid="column3">这里是第三列</div>

/*用法web标准不建议,但是记住下面元素需要清除浮动*/

</div>

CSS代码:

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;}

</div>

<div id="left"class="column">

<h2>Thisistheleftsidebar.</h2>

</div>

<div id="right"class="column">

<h2>Thisistherightsidebar.</h2>

</div>

CSS代码:

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;

}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics