1.ID 規則
2.Class 規則
3.標籤規則
4.通用規則
對效率的普遍認識是從Steve Souders在2009年出版的《高性能網站建設進階指南》開始,雖然書中羅列的更加詳細,但你也可以在這裡查看完整的引用列表,也可以在谷歌的《高效CSS選擇器的最佳實踐》中查看更多的細節。
本文我想分享一些我在寫高效能CSS中所用到的簡單範例和指南。這些都是受到MDN 編寫的高效CSS指南的啟發,並遵循類似的格式。
一、避免過度約束
一條普遍規則,不要增加不必要的約束。
// 糟糕
ul#someid {. .}
.menu#otherid{..}
// 好的
#someid {..}
#otherid {..}
P>
二、後位選擇符最爛
不只效能低下而且程式碼很脆弱,html程式碼和css程式碼嚴重耦合,html程式碼結構改變時,CSS也得修改,這有多糟糕,特別是在大公司裡,寫html和css的往往不是同一個人。
// 爛透了
html div tr td {..}
三、避免鍊式(交集)選擇符
這和過度約束的情況類似,更明智的做法是簡單的創建一個新的CSS類選擇符。
// 糟糕
.menu.left. icon {..}
// 好的
.menu-left-icon {..}
四、堅持KISS原則
想像我們有以下的DOM:
- phpcnltcna href="#" class="dribble
以下是對應的規則…
/ / 糟糕
#navigator li a {..}
// 好的
#navigator {..}
五、使用複合(緊湊)語法
盡可能使用複合語法。
// 很糟糕
.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: 20px 10px 20px 10px;
background: #000 url(../imgs/carrot.png) repeat-x bottom;
}
六、避免不必要的命名空間
// 糟糕
.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;
widthth : 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);
}
顯然,這裡只講述了少數的規則,是我在我自己的CSS中,本著更有效率和更易於維護性而嘗試遵循的規則。如果你想閱讀更多的知識,我建議閱讀MDN上的編寫高效的CSS和谷歌的優化瀏覽器渲染指南。