码迷,mamicode.com
首页 > Web开发 > 详细

css 通用属性(部分)

时间:2016-06-11 17:23:49      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:

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 通用属性(部分)

标签:

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!