Writing efficient CSS(编写高效的CSS)

文章相关链接:

原文链接: Mathew Carella   翻译: 伯乐在线 yanhaijing

译文链接: http://blog.jobbole.com/55067/

MDN:https://developer.mozilla.org/zh-CN/docs/CSS/Writing_Efficient_CSS

==========================================================

编写好的CSS代码,有助提升页面的渲染速度。本质上,引擎需要解析的CSS规则越少,性能越好。MDN上将CSS选择符归类成四个主要类别,如下所示,性能依次降低。

  1. ID 规则
  2. Class 规则
  3. 标签规则
  4. 通用规则
编写高性能的CSS,可以遵循以下类似规则:

避免过度约束

一条普遍的规则,不要添加不必要的约束

// 糟糕
ul#someid {..}
.menu#otherid{..}
 
// 好的
#someid {..}
#otherid {..}



后代选择符最烂

不仅性能低下而且代码很脆弱,html代码和css代码严重耦合,html代码结构发生变化时,CSS也得修改,这是多么糟糕,特别是在大公司里,写html和css的往往不是同一个人。

//烂透了
html div tr td {..}


避免链式(交集)选择符

这和过度约束的情况类似,更明智的做法是简单的创建一个新的CSS类选择符。

// 糟糕
.menu.left.icon{..}
 
// 好的
.menu-left-icon{..}



坚持KISS原则

想象我们有如下的DOM:

<ulid="navigator">
    <li><a href="#"class="twitter">Twitter</a></li>
    <li><a href="#"class="facebook">Facebook</a></li>
    <li><a href="#"class="dribble">Dribbble</a></li>
</ul>

下面是对应的规则……

// 糟糕
#navigator li a {..}
 
// 好的
#navigator a{..}


使用复合(紧凑)语法

尽可能使用复合语法。

// 糟糕
.someclass {
 padding-top:20px;
 padding-bottom:20px;
 padding-left:10px;
 padding-right:10px;
 background:#000;
 background-image:url(../imgs/carrot.png);
 background-position:bottom;
 background-repeat:repeat-x;
}
 
// 好的
.someclass {
 padding:20px10px 20px 10px;
 background:#000url(../imgs/carrot.png)repeat-xbottom;
}


避免不必要的命名空间

// 糟糕
.someclass table tr.otherclass td.somerule {..}
 
//好的
.someclass .otherclass td.somerule {..}


避免不必要的重复

尽可能组合重复的规则。

// 糟糕
 
.someclass {
 color:red;
 background:blue;
 font-size:15px;
}
 
.otherclass {
 color:red;
 background:blue;
 font-size:15px;
}
 
// 好的
 
.someclass, .otherclass {
 color:red;
 background:blue;
 font-size:15px;
}


尽可能精简规则

在上面规则的基础上,你可以进一步合并不同类里的重复的规则。

// 糟糕
.someclass {
 color:red;
 background:blue;
 height:150px;
 width:150px;
 font-size:16px;
}
 
.otherclass {
 color:red;
 background:blue;
 height:150px;
 width:150px;
 font-size:8px;
}
 
// 好的
.someclass, .otherclass {
 color:red;
 background:blue;
 height:150px;
 width:150px;
}
 
.someclass {
 font-size:16px;
}
 
.otherclass {
 font-size:8px;
}


避免不明确的命名约定

最好使用表示语义的名字。一个好的CSS类名应描述它是什么而不是它像什么。

避免 !importants

其实你应该也可以使用其他优质的选择器。

遵循一个标准的声明顺序

虽然有一些排列CSS属性顺序常见的方式,下面是我遵循的一种流行方式。

.someclass {
 /* Positioning */
 /* Display & Box Model */
 /* Background and typography styles */
 /* Transitions */
 /* Other */
}

 

组织好的代码格式

代码的易读性和易维护性成正比。下面是我遵循的格式化方法。

// 糟糕
.someclass-a, .someclass-b, .someclass-c, .someclass-d {
 ...
}
 
// 好的
.someclass-a,
.someclass-b,
.someclass-c,
.someclass-d {
 ...
}
 
// 好的做法
.someclass {
    background-image:
        linear-gradient(#000,#ccc),
        linear-gradient(#ccc,#ddd);
    box-shadow:
        2px2px 2px #000,
        1px4px 1px 1px #ddd inset;
}










發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章