css中清除浮动,解决外边距溢出

.clearfix {
   		&:before,
	    &:after {
		    content: "";
		    display: table;
	    }
	    &:after {
		    clear: both;
		    overflow: hidden;
	    }
    }

你可能感兴趣的:(css,清除浮动)