css清除浮动float总结

来源:互联网 发布:管家婆软件怎么样 编辑:程序博客网 时间:2024/05/18 00:40

float浮动会出现的问题

边框不能撑开,边距值不能正确显示

清除浮动

1、父级定义 overflow;
2、clear:both;
3、伪类:after 方法作用与父级

.content:after{    clear:both;    content: '';    display: block;    visibility:hidden;}
原创粉丝点击