css 通用属性(部分)
Posted 唯一的liaoliao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 通用属性(部分)相关的知识,希望对你有一定的参考价值。
css 通用属性(部分)
/*消除浏览器自带内外边距*/
*{margin: 0;padding: 0;}
/*清除浮动,加在要清除浮动元素的父元素的选择器上*/
.fix{*zoom:1; }
.fix:after,.fix:before{
display:block;
content:"clear";
height:0;
clear:both;
overflow:hidden;
visibility:hidden;
}
a{
text-decoration: none;/*去除下划线*/
}
ul li{
list-style: none;/*去除li元素所带的圆点*/
}
以上是关于css 通用属性(部分)的主要内容,如果未能解决你的问题,请参考以下文章