求解CSS浮动样式_html/css_WEB-ITnose
程序员文章站
2022-04-09 17:56:34
...
怎么才能使得粉红色的div模块放在绿色的div模块后面啊?
无标题文档
float写错了
回复讨论(解决方案)
#test3{
width:50px;
height:50px;
background:green;
clear:left;
flaot:left;
}
修正 为 float:left;
#test3{width:50px;height:50px;background:green;clear:left;flaot:left;}
float写错了
新手的通病
可以添加一个class 方便调用:
.clear{clear:both;overflow:hidden;height:0px;line-height:0px;font-size:0px;}
/*添加一个div*/
上一篇: PHP加密解密函数