清楚浮动造成的父元素吞并子元素第一个和最后一个的头部间距或者尾部间距

/*清除浮动后的影响*/
.clear-fix::after {
    content: '';
    display: block;
    clear: both;
}