10
09/2014
css 性能问题
id,class 不需要 tag
如 ul#navigation,ul.menu {margin-left:0;} 应该写为
#navigation,.menu {margin-left:0;}
慎用 ancestor,SASS 等嵌套不要大于三级
不要用 html div tr td {font-weight:700}
慎用 *
慎用属性选择器
[class^=”mini-icon-“] {display:none}
不要用链式写法
如 .small.icon {width:30px;} 应该写为
.small-icon {width:30px;}