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元素所带的圆点*/
}

原文地址:https://www.cnblogs.com/liaoliao985786516/p/5575530.html