CSS編碼規範

CSS編碼規範

本文檔的目標是使CSS代碼風格保持一致,容易被理解和被維護,若是本身沒有這種習慣,請好好選擇你的IDE,別再用「文本編輯器」。css

  • 本文檔雖針對CSS設計的,可是在使用各類CSS的預編譯器(如less、sass、stylus等)時,適用的部分也應儘可能遵循本文檔的約定。

1 代碼風格

1.1 文件

[建議] CSS 文件使用無 BOM 的 UTF-8 編碼。

解釋:html

UTF-8 編碼具備更普遍的適應性。BOM 在使用程序或工具處理文件時可能形成沒必要要的干擾。html5

1.2 縮進

[強制] 使用 2 個空格作爲一個縮進層級,不容許使用tab 字符。

示例:git

.selector { margin: 0; padding: 0; }

1.3 空格

[強制] 選擇器 與 { 之間必須包含空格。

示例:github

.selector { }

[強制] 屬性名 與以後的 : 之間不容許包含空格, : 與 屬性值 之間必須包含空格。

示例:web

margin: 0;

[強制] 列表型屬性值 書寫在單行時,, 後必須跟一個空格。

示例:express

font-family: Arial, sans-serif;

1.4 行長度

[強制] 每行不得超過 120 個字符,除非單行不可分割。

解釋:windows

常見不可分割的場景爲URL超長。瀏覽器

[建議] 對於超長的樣式,在樣式值的 空格 處或 , 後換行,建議按邏輯分組。

示例:sass

/* 不一樣屬性值按邏輯分組 */ background: transparent url(aVeryVeryVeryLongUrlIsPlacedHere) no-repeat 0 0; /* 可重複屢次的屬性,每次重複一行 */ background-image: url(aVeryVeryVeryLongUrlIsPlacedHere) url(anotherVeryVeryVeryLongUrlIsPlacedHere); /* 相似函數的屬性值能夠根據函數調用的縮進進行 */ background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.04, rgb(88,94,124)), color-stop(0.52, rgb(115,123,162)) );

1.5 選擇器

[強制] 當一個 rule 包含多個 selector 時,每一個選擇器聲明必須獨佔一行。

示例:

/* good */ .post, .page, .comment { line-height: 1.5; } /* bad */ .post, .page, .comment { line-height: 1.5; }

[強制] >+~ 選擇器的兩邊各保留一個空格。

示例:

/* good */ main > nav { padding: 10px; } label + input { margin-left: 5px; } input:checked ~ button { background-color: #69C; } /* bad */ main>nav { padding: 10px; } label+input { margin-left: 5px; } input:checked~button { background-color: #69C; }

[強制] 屬性選擇器中的值必須用雙引號包圍。

解釋:

不容許使用單引號,不容許不使用引號。

示例:

/* good */ article[character="juliet"] { voice-family: "Vivien Leigh", victoria, female; } /* bad */ article[character='juliet'] { voice-family: "Vivien Leigh", victoria, female; }

1.6 屬性

[強制] 多個屬性定義必須另起一行。

示例:

/* good */ .selector { margin: 0; padding: 0; } /* bad */ .selector { margin: 0; padding: 0; }

[強制] 屬性定義後必須以分號結尾。

示例:

/* good */ .selector { margin: 0; } /* bad */ .selector { margin: 0 }

2 通用

2.1 選擇器

[強制] 如無必要,不得爲 idclass 選擇器添加 類型選擇器 進行限定。

解釋:

在性能和維護性上,都有必定的影響。

示例:

/* good */ #error, .danger-message { font-color: #c00; } /* bad */ dialog#error, p.danger-message { font-color: #c00; }

[建議] 選擇器的嵌套層級應不大於 4 級,位置靠後的限定條件應儘量精確。

示例:

/* good */ #username input {} .comment .avatar {} /* bad */ .page .header .login #username input {} .comment div * {}

2.2 屬性縮寫

[建議] 在可使用縮寫的狀況下,儘可能使用屬性縮寫。

示例:

/* good */ .post { font: 12px/1.5 arial, sans-serif; } /* bad */ .post { font-family: arial, sans-serif; font-size: 12px; line-height: 1.5; }

[建議] 使用 border / margin / padding 等縮寫時,應注意隱含值對實際數值的影響,確實須要設置多個方向的值時才使用縮寫。

解釋:

border / margin / padding 等縮寫會同時設置多個屬性的值,容易覆蓋不須要覆蓋的設定。如某些方向須要繼承其餘聲明的值,則應該分開設置。

示例:

/* centering <article class="page"> horizontally and highlight featured ones */ article { margin: 5px; border: 1px solid #999; } /* good */ .page { margin-right: auto; margin-left: auto; } .featured { border-color: #69c; } /* bad */ .page { margin: 5px auto; /* introducing redundancy */ } .featured { border: 1px solid #69c; /* introducing redundancy */ }

2.3 屬性書寫順序

[建議] 同一 rule set 下的屬性在書寫時,應按功能進行分組,並以 Formatting Model(佈局方式、位置) > Box Model(尺寸) > Typographic(文本相關) > Visual(視覺效果) 的順序書寫,以提升代碼的可讀性。

解釋:

  • Formatting Model 相關屬性包括:position / top / right / bottom / left / float / display / overflow 等
  • Box Model 相關屬性包括:border / margin / padding / width / height 等
  • Typographic 相關屬性包括:font / line-height / text-align / word-wrap 等
  • Visual 相關屬性包括:background / color / transition / list-style 等
  • Misc 相關屬性包括:opacity / text-decoration / white-space / word-wrap 等

另外,若是包含 content 屬性,應放在最前面。

示例:

.sidebar { /* formatting model: positioning schemes / offsets / z-indexes / display / ... */ position: absolute; top: 50px; left: 0; overflow-x: hidden; display: block; /* box model: sizes / margins / paddings / borders / ... */ width: 200px; padding: 5px; border: 1px solid #ddd; /* typographic: font / aligns / text styles / ... */ font-size: 14px; line-height: 20px; /* visual: colors / shadows / gradients / ... */ background: #f5f5f5; color: #333; -webkit-transition: color 1s; -moz-transition: color 1s; transition: color 1s; /* Misc */ opacity: 1; text-decoration: none; white-space: nowrap; word-wrap: normal; cursor: pointer; }

2.4 清除浮動

[建議] 當元素須要撐起高度以包含內部的浮動元素時,經過對僞類設置 clear 或觸發 BFC 的方式進行 clearfix。儘可能不使用增長空標籤的方式。

解釋:

觸發 BFC 的方式不少,常見的有:

  • float 非 none
  • position 非 static
  • overflow 非 visible

如但願使用更小反作用的清除浮動方法,參見 A new micro clearfix hack 一文。

另需注意,對已經觸發 BFC 的元素不須要再進行 clearfix。

示例:

<div class="fn-clear"> <div class="fn-left"></div> <div class="fn-left"></div> </div>

2.5 !important

[建議] 儘可能不使用 !important 聲明。

[建議] 當須要強制指定樣式且不容許任何場景覆蓋時,經過標籤內聯和 !important 定義樣式。

解釋:

必須注意的是,僅在設計上 確實不容許任何其它場景覆蓋樣式 時,才使用內聯的 !important 樣式。一般在第三方環境的應用中使用這種方案。下面的 z-index 章節是其中一個特殊場景的典型樣例。

2.6 z-index

[建議] 將 z-index 進行分層,對文檔流外絕對定位元素的視覺層級關係進行管理。

解釋:

同層的多個元素,如多個由用戶輸入觸發的 Dialog,在該層級內使用相同的 z-index 或遞增 z-index

建議每層包含100個 z-index 來容納足夠的元素,若是每層元素較多,能夠調整這個數值。

[建議] 在可控環境下,指望顯示在最上層的元素,z-index 指定爲 9999

解釋:

可控環境分紅兩種,一種是自身產品線環境;還有一種是可能會被其餘產品線引用,可是不會被外部第三方的產品引用。

不建議取值爲 2147483647。以便於自身產品線被其餘產品線引用時,當遇到層級覆蓋衝突的狀況,留出向上調整的空間。

[建議] 在第三方環境下,指望顯示在最上層的元素,經過標籤內聯和 !important,將 z-index 指定爲 2147483647

解釋:

第三方環境對於開發者來講徹底不可控。在第三方環境下的元素,爲了保證元素不被其頁面其餘樣式定義覆蓋,須要採用此作法。

3 值與單位

3.1 文本

[強制] 文本內容必須用雙引號包圍。

解釋:

文本類型的內容可能在選擇器、屬性值等內容中。

示例:

/* good */ html[lang|="zh"] q:before { font-family: "Microsoft YaHei", sans-serif; content: "「"; } html[lang|="zh"] q:after { font-family: "Microsoft YaHei", sans-serif; content: "」"; } /* bad */ html[lang|=zh] q:before { font-family: 'Microsoft YaHei', sans-serif; content: '「'; } html[lang|=zh] q:after { font-family: "Microsoft YaHei", sans-serif; content: "」"; }

3.2 數值

[強制] 當數值爲 0 - 1 之間的小數時,省略整數部分的 0

示例:

/* good */ panel { opacity: .8 } /* bad */ panel { opacity: 0.8 }

3.3 url()

[強制] url() 函數中的路徑不加引號。

示例:

/* good */ body { background: url(bg.png); } /* bad */ body { background: url("bg.png"); }

[強制] url() 函數中的絕對路徑可省去協議名。

示例:

body { background: url(//w.zuzuche.com/img/bg.png) no-repeat 0 0; }

3.4 長度

[強制] 長度爲 0 時須省略單位。 (也只有長度單位可省)

示例:

/* good */ body { padding: 0 5px; } /* bad */ body { padding: 0px 5px; }

3.5 顏色

[強制] RGB顏色值必須使用十六進制記號形式 #rrggbb。不容許使用 rgb()

解釋:

帶有alpha的顏色信息可使用 rgba()。使用 rgba() 時每一個逗號後必須保留一個空格。

示例:

/* good */ .success { box-shadow: 0 0 2px rgba(0, 128, 0, .3); border-color: #008000; } /* bad */ .success { box-shadow: 0 0 2px rgba(0,128,0,.3); border-color: rgb(0, 128, 0); }

[強制] 顏色值能夠縮寫時,必須使用縮寫形式。

示例:

/* good */ .success { background-color: #aca; } /* bad */ .success { background-color: #aaccaa; }

[強制] 顏色值不容許使用命名色值。

示例:

/* good */ .success { color: #90ee90; } /* bad */ .success { color: lightgreen; }

[建議] 顏色值中的英文字符采用小寫。如不用小寫也須要保證同一項目內保持大小寫一致。

示例:

/* good */ .success { background-color: #aca; color: #90ee90; } /* good */ .success { background-color: #ACA; color: #90EE90; } /* bad */ .success { background-color: #ACA; color: #90ee90; }

3.6 2D 位置

[強制] 必須同時給出水平和垂直方向的位置。

解釋:

2D 位置初始值爲 0% 0%,但在只有一個方向的值時,另外一個方向的值會被解析爲 center。爲避免理解上的困擾,應同時給出兩個方向的值。background-position屬性值的定義

示例:

/* good */ body { background-position: center top; /* 50% 0% */ } /* bad */ body { background-position: top; /* 50% 0% */ }

4 文本編排

4.1 字體族

[強制] font-family 屬性中的字體族名稱應使用字體的英文 Family Name,其中若有空格,須放置在引號中。

解釋:

所謂英文 Family Name,爲字體文件的一個元數據,常見名稱以下:

字體 操做系統 Family Name
宋體 (中易宋體) Windows SimSun
黑體 (中易黑體) Windows SimHei
微軟雅黑 Windows Microsoft YaHei
微軟正黑 Windows Microsoft JhengHei
華文黑體 Mac/iOS STHeiti
冬青黑體 Mac/iOS Hiragino Sans GB
文泉驛正黑 Linux WenQuanYi Zen Hei
文泉驛微米黑 Linux WenQuanYi Micro Hei

示例:

h1 { font-family: "Microsoft YaHei"; }

[強制] font-family 按「西文字體在前、中文字體在後」、「效果佳 (質量高/更能知足需求) 的字體在前、效果通常的字體在後」的順序編寫,最後必須指定一個通用字體族( serif / sans-serif )。

解釋:

更詳細說明可參考本文

示例:

/* Display according to platform */ .article { font-family: Arial, sans-serif; } /* Specific for most platforms */ h1 { font-family: "Helvetica Neue", Arial, "Hiragino Sans GB", "WenQuanYi Micro Hei", "Microsoft YaHei", sans-serif; }

[強制] font-family 不區分大小寫,但在同一個項目中,一樣的 Family Name 大小寫必須統一。

示例:

/* good */ body { font-family: Arial, sans-serif; } h1 { font-family: Arial, "Microsoft YaHei", sans-serif; } /* bad */ body { font-family: arial, sans-serif; } h1 { font-family: Arial, "Microsoft YaHei", sans-serif; }

4.2 字號

[強制] 須要在 Windows 平臺顯示的中文內容,其字號應不小於 12px

解釋:

因爲 Windows 的字體渲染機制,小於 12px 的文字顯示效果極差、難以辨認。

4.3 字體風格

[建議] 須要在 Windows 平臺顯示的中文內容,不要使用除 normal 外的 font-style。其餘平臺也應慎用。

解釋:

因爲中文字體沒有 italic 風格的實現,全部瀏覽器下都會 fallback 到 obilique 實現 (自動擬合爲斜體),小字號下 (特別是 Windows 下會在小字號下使用點陣字體的狀況下) 顯示效果差,形成閱讀困難。

4.4 字重

[強制] font-weight 屬性必須使用數值方式描述。

解釋:

CSS 的字重分 100 – 900 共九檔,但目前受字體自己質量和瀏覽器的限制,實際上支持 400 和 700 兩檔,分別等價於關鍵詞 normal 和 bold。

瀏覽器自己使用一系列啓發式規則來進行匹配,在 <700 時通常匹配字體的 Regular 字重,>=700 時匹配 Bold 字重。

但已有瀏覽器開始支持 =600 時匹配 Semibold 字重 (見此表),故使用數值描述增長了靈活性,也更簡短。

示例:

/* good */ h1 { font-weight: 700; } /* bad */ h1 { font-weight: bold; }

4.5 行高

[建議] line-height 在定義文本段落時,應使用數值。

解釋:

將 line-height 設置爲數值,瀏覽器會基於當前元素設置的 font-size 進行再次計算。在不一樣字號的文本段落組合中,能達到較爲溫馨的行間間隔效果,避免在每一個設置了 font-size 都須要設置 line-height。

當 line-height 用於控制垂直居中時,仍是應該設置成與容器高度一致。

示例:

.container { line-height: 1.5; }

5 變換與動畫

[強制] 使用 transition 時應指定 transition-property

示例:

/* good */ .box { transition: color 1s, border-color 1s; } /* bad */ .box { transition: all 1s; }

[建議] 儘量在瀏覽器能高效實現的屬性上添加過渡和動畫。

解釋:

本文,在可能的狀況下應選擇這樣四種變換:

  • transform: translate(npx, npx);
  • transform: scale(n);
  • transform: rotate(ndeg);
  • opacity: 0..1;

典型的,可使用 translate 來代替 left 做爲動畫屬性。

示例:

/* good */ .box { transition: transform 1s; } .box:hover { transform: translate(20px); /* move right for 20px */ } /* bad */ .box { left: 0; transition: left 1s; } .box:hover { left: 20px; /* move right for 20px */ }

6 響應式

[強制] Media Query 不得單獨編排,必須與相關的規則一塊兒定義。

示例:

/* Good */ /* header styles */ @media (...) { /* header styles */ } /* main styles */ @media (...) { /* main styles */ } /* footer styles */ @media (...) { /* footer styles */ } /* Bad */ /* header styles */ /* main styles */ /* footer styles */ @media (...) { /* header styles */ /* main styles */ /* footer styles */ }

[強制] Media Query 若是有多個逗號分隔的條件時,應將每一個條件放在單獨一行中。

示例:

@media (-webkit-min-device-pixel-ratio: 2), /* Webkit-based browsers */ (min--moz-device-pixel-ratio: 2), /* Older Firefox browsers (prior to Firefox 16) */ (min-resolution: 2dppx), /* The standard way */ (min-resolution: 192dpi) { /* dppx fallback */ /* Retina-specific stuff here */ }

[建議] 儘量給出在高分辨率設備 (Retina) 下效果更佳的樣式。

7 兼容性

7.1 屬性前綴

[建議] 帶私有前綴的屬性由長到短排列,按冒號位置對齊。

解釋:

標準屬性放在最後,按冒號對齊方便閱讀,也便於在編輯器內進行多行編輯。

在 Sublime Text 2 中, 使用 Selection → Add Previous Line (⌃⇧↑) 和 Selection → Add Next Line (⌃⇧↓)。

示例:

.box { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

7.2 Hack

[建議] 須要添加 hack 時應儘量考慮是否能夠採用其餘方式解決。

解釋:

若是能經過合理的 HTML 結構或使用其餘的 CSS 定義達到理想的樣式,則不該該使用 hack 手段解決問題。一般 hack 會致使維護成本的增長。

[建議] 儘可能使用 選擇器 hack 處理兼容性,而非 屬性 hack

解釋:

儘可能使用符合 CSS 語法的 selector hack,能夠避免一些第三方庫沒法識別 hack 語法的問題。

示例:

/* IE 7 */ *:first-child + html #header { margin-top: 3px; padding: 5px; } /* IE 6 */ * html #header { margin-top: 5px; padding: 4px; }

[建議] 儘可能使用簡單的 屬性 hack

示例:

.box { _display: inline; /* fix double margin */ float: left; margin-left: 20px; } .container { overflow: hidden; *zoom: 1; /* triggering hasLayout */ }

7.3 Expression

[強制] 禁止使用 Expression

7.4 @import

[強制] 禁止使用 @import

解釋:與 相比, @import 更慢,須要額外的頁面請求,而且可能引起其餘的意想不到的問題。應該避免使用他們,而選擇其餘的方案:

  • 使用多個 <link> 元素
  • 使用 CSS 預處理器例如 Sass 或 Less 將樣式編譯到一個文件中
相關文章
相關標籤/搜索