CSS:浮动清理另类方法
作者:edream 来源:沉寂博客 时间:2008-11-17 11:45:00
在进行浮动布局时,大多数人都深知,在必要的地方进行浮动清理:<div style="clear:both;"></div>。
例如:
<div style="background:#666;"> <!-- float container -->
<div style="float:left; width:30%; height:40px;background:#EEE; ">Some Content</div>
</div>
此时预览此代码,我们会发现最外层的父元素float container,并没有显示。这是因为子元素因进行了浮动,而脱离了文档流,导致父元素的height为零。
若将代码修改为:
<div style="background:#666;"> <!-- float container -->
<div style="float:left; width:30%; height:40px;background:#EEE; ">Some Content</div>
<div style="clear:both"></div>
</div>
注意,多了一段清理浮动的代码。这是一种好的CSS代码习惯,但是这种方法增加了无用的元素。这里有一种更好的方法,将HTML代码修改为:
<div class="clearfix" style="background:#666;"> <!-- float container -->
<div style="float:left; width:30%; height:40px;background:#EEE; ">Some Content</div>
</div>
定义CSS类,进行“浮动清理”的控制:
.clearfix:after {}{
content: ".";
clear: both;
height: 0;
visibility: hidden;
display: block;
} /* 这是对Firefox进行的处理,因为Firefox支持生成元素,而IE所有版本都不支持生成元素 */
.clearfix {}{
display: inline-block;
} /* 这是对 Mac 上的IE浏览器进行的处理 */
/**//* Hides from IE-mac \*/
* html .clearfix {}{height: 1%;} /* 这是对 win 上的IE浏览器进行的处理 */
.clearfix {}{display: block;} /* 这是对display: inline-block;进行的修改,重置为区块元素*/
/**//* End hide from IE-mac */
此时,预览以上代码( 删去这种注释 ),会发现即使子元素进行了浮动,父元素float container仍然会将其包围,进行高度自适应。
代码参考:http://www.positioniseverything.net/easyclearing.html
clear元素的margin-top被重置为零,当你使用clear(left & both & right)清理一个浮动元素时,该元素的margin-top会被重置为0。所以为了创建浮动列,并使用footer进行浮动清理时,必须对浮动列(sidebar && content)都指定margin-bottom,最好margin-bottom相同。(Firefox会将margin-top重置0,而IE不重置footer的margin-top)。
例如:
分别在Firefox和IE中运行一下代码,仔细读者会发现页脚(footer)的margin-top在火狐中并没有显示,而在IE中却出现了10像素的上边距。
HTML代码
<body>
<div id="wrapper">
<div id="masthead">
masthead content goes here
</div>
<div id="sidebar">
sidebar content goes here
</div>
<div id="content">
main content goes here
<br/>
main content goes here
</div>
<div id="footer">
footer
</div>
</div>
</body>CSS代码 body {}{
margin:0; padding:0;
background-color:#FFFFCC;
}
#wrapper {}{
width:800px;
margin:0 auto;
}
/**//*Masthead*/
#masthead {}{
padding:10px;
background:#FFCC33;
margin-bottom:10px;
}
/**//*Content*/
#content {}{
float:left;
width:60%;
background:#CCCCCC;
}
/**//*Sidebar*/
#sidebar {}{
float:right;
width:36%;
background:#999999;
}
/**//*Footer*/
#footer {}{
clear:both;
padding:10px;
background:#FFCC33;
}
标签:浮动,css,布局,代码
0
投稿
猜你喜欢
asp常用数据库连接方法和技巧
2010-05-27 12:28:00
Python面向对象之Web静态服务器
2021-09-24 07:32:25
Numpy 中的矩阵求逆实例
2022-11-15 16:51:12
聊一聊JS中的prototype
2024-05-02 16:20:18
JS简单实现DIV相对于浏览器固定位置不变的方法
2023-08-05 22:30:12
Oracle 函数大全[字符串函数,数学函数,日期函数]第1/4页
2009-03-04 10:56:00
详解python 3.6 安装json 模块(simplejson)
2023-08-04 10:55:03
css布局自适应高度方法
2007-05-11 17:03:00
Python实现批量读取图片并存入mongodb数据库的方法示例
2021-03-25 01:51:53
网站导航设计的6大分类
2010-07-12 18:46:00
System.Data.OleDb.OleDbDataAdapter与System.Data.OleDb.OleDbDataReader的区别是什么?
2009-10-29 12:17:00
PyCharm2019.3永久激活破解详细图文教程,亲测可用(不定期更新)
2022-04-27 23:51:16
Python编程产生非均匀随机数的几种方法代码分享
2023-02-10 02:00:19
使用OpenCV获取图片连通域数量,并用不同颜色标记函
2023-10-17 19:58:05
下一代web:浏览器存储支持
2008-06-11 11:50:00
Go语言eclipse环境搭建图文教程
2024-05-09 09:47:36
python如何创建TCP服务端和客户端
2021-05-20 04:52:52
python开发之IDEL(Python GUI)的使用方法图文详解
2023-09-15 23:22:42
win7 x64系统中安装Scrapy的方法
2023-10-19 04:04:36
对python 生成拼接xml报文的示例详解
2021-10-24 13:07:38