css之伪类清除浮动及样式重置

 

/* //伪类 */

.clearfix:before,.clearfix:after{

content: "";

display: table;

}

.clearfix:after{

clear: both;

}

/* //适配低版本的IE浏览器 */

.clearfix{

zoom:1;

}

你可能感兴趣的:(css之伪类清除浮动及样式重置)