天天看点

解决父元素高度塌陷的问题,清除浮动,添加伪元素

.answer:after{

    content: "";

    display: block;

    clear: both;

}

子元素浮动的情况下,这种写法确实可以撑开父元素