.bottom_frist img{
float: left;
}
.bottom_frist::after{
content:'';
clear:both;
display:block;
visibility:hidden;
height:0;
}
清除浮动造成的高度塌陷
再其父类中添加after伪类
.bottom_frist img{
float: left;
}
.bottom_frist::after{
content:'';
clear:both;
display:block;
visibility:hidden;
height:0;
}
清除浮动造成的高度塌陷
再其父类中添加after伪类