1
loading 2014-04-03 14:42:39 +08:00 via iPhone
自己根据用到的元素写一下,文件又小又好
|
2
Sivan 2014-04-03 15:04:56 +08:00
不想用 normalize 的话,你用的通配符这种也是可以的,不会影响效率,但是后面几行可以只加到 html 上。
|
3
flyingkid 2014-04-03 15:30:38 +08:00
直接把normalize.css下回来自己改进一下就行了。比如有些标签根本不会用到的,直接删除。
|
4
foru17 2014-04-03 15:31:37 +08:00
@charset "utf-8";
div,p,dl,dd,h1,h2,h3,h4,h5,h6,a,b,u,em,input,textarea,button,select,form,section,label,span,td,li,nav,footer,body,ul,i { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-tap-highlight-color: rgba(0,0,0,0); word-wrap: break-word; word-break: break-all; padding: 0; margin: 0 } ul,li,ol { list-style: none } a { text-decoration: none; color: #333 } a,img,button { -webkit-touch-callout: none } a:focus,a:active,a:hover,input,button,textarea { outline: 0 } table { border-collapse: collapse } body,td,input,textarea,option,select,button { font-family: "微软雅黑",helvetica,arial; font-size: 1em; -webkit-text-size-adjust: none } body,td,h3 { font-size: .95em; -webkit-user-select: none } .clearfix:after { content: ''; display: block; overflow: hidden; visibility: hidden; clear: both } 供参考 |