div float

 Float: Float属性是DIV+CSS布局中最基本也是最常用的属性,用于实现多列功能,我们知道<div>标签默认一行只能显示一个,而使用Float属性可以实现一行显示多个div的功能,最直接解释方法就是能实现表格布局的多列功能。
Float属性有left、right、none三个值,none默认属性不用管,主要是left和right两个属性最常用。

但是请注意,一列的div标签宽度和不能大于父层宽度,否则多出部分将被挤到下一列

 div设置float属性浮动之后 脱离了文档流,下一个块级元素上移,直到遇到上一个元素。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>DIV+CSS</title>
<style type="text/css">
#Container{
    width:1000px;
    margin:0 auto;/*设置整个容器在浏览器中水平居中*/
    background:#FF0000;
}
#Header{
    height:80px;
    background:#093;
}
#logo{
    padding-left:50px;
    padding-top:20px;
    padding-bottom:50px;
}
#Content{
    height:600px;
    /*此处对容器设置了高度,一般不建议对容器设置高度,一般使用overflow:auto;
    属性设置容器根据内容自适应高度,如果不指定高度或不设置自适应高度,
    容器将默认为1个字符高度,容器下方的布局元素(footer)设置margin-top:属性将无效*/
    margin-top:20px;/*此处讲解margin的用法,设置content与上面header元素之间的距离*/
    background:#00FF00;     
}
#Content-Left{
    height:400px;
    width:200px;
    margin:20px;/*设置元素跟其他元素的距离为20像素*/
    float:left;/*设置浮动,实现多列效果,div+Css布局中很重要的*/
    background:#90C;
}
#Content-Main{
    height:400px;
    width:100px;
    margin:20px;/*设置元素跟其他元素的距离为20像素*/
    float:left;/*设置浮动,实现多列效果,div+Css布局中很重要的*/
    background:#90C;
}
#Content-Right{
    height:400px;
    width:80px;
    margin:20px;/*设置元素跟其他元素的距离为20像素*/
    float:right;/*设置浮动,实现多列效果,div+Css布局中很重要的*/
    background:#90C;
}
/*注:Content-Left和Content-Main元素是Content元素的子元素,两个元素使用了float:left;
设置成两列,这个两个元素的宽度和这个两个元素设置的padding、margin的和一定不能大于
父层Content元素的宽度,否则设置列将失败*/

#Footer{
    height:40px;
    background:#90C;
    margin-top:20px;
  /*clear:both;*/
}
.Clear{
    clear:both;
}
</style>
</head>
 
<body>
<div id="Container">
    <div id="Header">
        <div id="logo">这里设置了padding属性介绍一下padding的用法,padding将设置文本与边框的距离。</div>
    </div>
    <div id="Content">
        <div id="Content-Left">Content-Left</div>
        <div id="Content-Main">Content-Main</div>
        <div id="Content-Right">Content-Right</div>
    </div>
    <div class="Clear"><!--如何你上面用到float,下面布局开始前最好清除,在下一列的第一个div中设置属性clear:both;--></div>
    <div id="Footer">Footer</div>
</div>
</body>
</html>

 

 

http://www.kwstu.com/ArticleView/divcss_201442291125960

 

posted @ 2016-02-04 22:01  牧 天  阅读(846)  评论(0编辑  收藏  举报