Maison > Article > interface Web > 求解CSS浮动样式_html/css_WEB-ITnose
#test3{
width:50px;
height:50px;
background:green;
clear:left;
flaot:left;
}
修正 为 float:left;
#test3{width:50px;height:50px;background:green;clear:left;flaot:left;}
新手的通病
可以添加一个class 方便调用:
.clear{clear:both;overflow:hidden;height:0px;line-height:0px;font-size:0px;}
<div id="container"> <div id="test1"></div> <div id="test2"></div> <div class="clear"></div> /*添加一个div*/ <div id="test3"></div> <div id="test4"></div></div>