700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > CSS清除浮动-after伪元素

CSS清除浮动-after伪元素

时间:2023-09-03 15:47:37

相关推荐

CSS清除浮动-after伪元素

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>CSS清除浮动-after伪元素</title><style>.clearfix:after{content: "";display: block;height: 0 ;clear:both;visibility: hidden;}.clearfix{*zoom: 1;}.box{width: 800px;margin:0 auto;background-color:pink;border:1px solid red;}.zzf1{float: left;width: 200px;height: 200px;background-color:blue;}.zzf2{float: left;width: 200px;height: 200px;background-color:yellow ;}.zzf3{float: left;width: 200px;height: 200px;background-color:blue;}.zzf4{float: left;width: 200px;height: 200px;background-color:yellow ;}.zzf5{float: left;width: 200px;height: 200px;background-color:red ;}</style></head><body><div class="box clearfix"><div class="zzf1"></div><div class="zzf2"></div><div class="zzf3"></div><div class="zzf4"></div><div class="zzf5"></div></div></body></html>width: 200px;height: 200px;background-color:red ;}</style></head><body><div class="box"><div class="zzf1"></div><div class="zzf2"></div><div class="zzf3"></div><div class="zzf4"></div><div class="zzf5"></div></div></body></html>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。