清除浏览器某些默认样式

这代码还是刚学前端的时候,从学长(DaLao)那里抄来的,单独写成common.css,用的时候直接引很方便

 1 body,dl,dt,dd,p,h1,h2,h3,h4,h5,h6,ul,ol{margin:0;padding:0;}
 2 ol,ul{list-style:none;}
 3 em,i{ font-style:normal;}
 4 strong,b{ font-weight:normal;}
 5 a{text-decoration:none;cursor: pointer;}
 6 img{border:0; vertical-align:top;}
 7 .clearfix::after{
 8     content: "";
 9     display: block;
10     clear: both;
11 }

常用的也就这些,一般够用了

posted @ 2019-08-30 17:13  Xxiaoyu  阅读(278)  评论(0编辑  收藏  举报