Css 清除浮动属性示例的小例子,不要小看清除浮动哦,有时候你忘记了这个,会把你搞的一头雾水,以为其它地方弄错了,清除浮动其实就没两句代码,但是重要性不容忽视。
实例代码:
Copy to Clipboard 引用的内容:[www.veryhuo.com]
引用的内容:[www.veryhuo.com]
<!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>css清除浮动</title> 
<style> 
.float 
{ 
float:left; 
width:200px; 
height:100px; 
background:#666666; 
} 
.clear 
{ 
clear:left; 
float:left; 
width:200px; 
height:100px; 
background:#999999; 
} 
</style> 
</head> 
<body> 
<div class="float">这是一个浮动元素</div> 
<div class="clear">这是一个清除浮动属性的元素</div> 
</body> 
</html>