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 */
}
3.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 等
另外,若是包含 content 屬性,應放在最前面。
示例:
.sidebar {
/* formatting model: positioning schemes / offsets / z-indexes / display / ... */
position: absolute;
top: 50px;
left: 0;
overflow-x: hidden;
/* 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;
}
3.4 清除浮動
[建議] 當元素須要撐起高度以包含內部的浮動元素時,經過對僞類設置 clear 或觸發 BFC 的方式進行 clearfix。儘可能不使用增長空標籤的方式。
解釋:
觸發 BFC 的方式不少,常見的有:
float 非 none position 非 static overflow 非 visible
如但願使用更小反作用的清除浮動方法,參見 A new micro clearfix hack 一文。
另需注意,對已經觸發 BFC 的元素不須要再進行 clearfix。
3.5 !important
[建議] 儘可能不使用 !important 聲明。
[建議] 當須要強制指定樣式且不容許任何場景覆蓋時,經過標籤內聯和 !important 定義樣式。
解釋:
必須注意的是,僅在設計上 確實不容許任何其它場景覆蓋樣式 時,才使用內聯的 !important 樣式。一般在第三方環境的應用中使用這種方案。下面的 z-index 章節是其中一個特殊場景的典型樣例。
3.6 z-index
[建議] 將 z-index 進行分層,對文檔流外絕對定位元素的視覺層級關係進行管理。
解釋:
同層的多個元素,如多個由用戶輸入觸發的 Dialog,在該層級內使用相同的 z-index 或遞增 z-index。
建議每層包含100個 z-index 來容納足夠的元素,若是每層元素較多,能夠調整這個數值。
[建議] 在可控環境下,指望顯示在最上層的元素,z-index 指定爲 999999。
解釋:
可控環境分紅兩種,一種是自身產品線環境;還有一種是可能會被其餘產品線引用,可是不會被外部第三方的產品引用。
不建議取值爲 2147483647。以便於自身產品線被其餘產品線引用時,當遇到層級覆蓋衝突的狀況,留出向上調整的空間。
[建議] 在第三方環境下,指望顯示在最上層的元素,經過標籤內聯和 !important,將 z-index 指定爲 2147483647。
解釋:
第三方環境對於開發者來講徹底不可控。在第三方環境下的元素,爲了保證元素不被其頁面其餘樣式定義覆蓋,須要採用此作法。
4 值與單位
4.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: "」";
}
4.2 數值
[強制] 當數值爲 0 - 1 之間的小數時,省略整數部分的 0。
示例:
/* good */
panel {
opacity: .8;
}
/* bad */
panel {
opacity: 0.8;
}
4.3 url()
[強制] url() 函數中的路徑不加引號。
示例:
body {
background: url(bg.png);
}
[建議] url() 函數中的絕對路徑可省去協議名。
示例:
body {
background: url(//baidu.com/img/bg.png) no-repeat 0 0;
}
4.4 長度
[強制] 長度爲 0 時須省略單位。 (也只有長度單位可省)
示例:
/* good */
body {
padding: 0 5px;
}
/* bad */
body {
padding: 0px 5px;
}
4.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;
}
4.6 2D 位置
[強制] 必須同時給出水平和垂直方向的位置。
解釋:
2D 位置初始值爲 0% 0%,但在只有一個方向的值時,另外一個方向的值會被解析爲 center。爲避免理解上的困擾,應同時給出兩個方向的值。background-position屬性值的定義
示例:
/* good /
body {
background-position: center top; / 50% 0% */
}
/* bad /
body {
background-position: top; / 50% 0% */
}
5 文本編排
5.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;
}
5.2 字號
[強制] 須要在 Windows 平臺顯示的中文內容,其字號應不小於 12px。
解釋:
因爲 Windows 的字體渲染機制,小於 12px 的文字顯示效果極差、難以辨認。
5.3 字體風格
[建議] 須要在 Windows 平臺顯示的中文內容,不要使用除 normal 外的 font-style。其餘平臺也應慎用。
解釋:
因爲中文字體沒有 italic 風格的實現,全部瀏覽器下都會 fallback 到 obilique 實現 (自動擬合爲斜體),小字號下 (特別是 Windows 下會在小字號下使用點陣字體的狀況下) 顯示效果差,形成閱讀困難。
5.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;
}
5.5 行高
[建議] line-height 在定義文本段落時,應使用數值。
解釋:
將 line-height 設置爲數值,瀏覽器會基於當前元素設置的 font-size 進行再次計算。在不一樣字號的文本段落組合中,能達到較爲溫馨的行間間隔效果,避免在每一個設置了 font-size 都須要設置 line-height。
當 line-height 用於控制垂直居中時,仍是應該設置成與容器高度一致。
示例:
.container {
line-height: 1.5;
}
6 變換與動畫
[強制] 使用 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 */
}
7 響應式
[強制] 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) 下效果更佳的樣式。
8 兼容性
8.1 屬性前綴
[強制] 帶私有前綴的屬性由長到短排列,按冒號位置對齊。
解釋:
標準屬性放在最後,按冒號對齊方便閱讀,也便於在編輯器內進行多行編輯。
示例:
.box {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
8.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 */
}
8.3 Expression
[強制] 禁止使用 Expression。
Contact GitHub API Training Shop Blog About © 2016 GitHub, Inc. Terms Privacy Security Status Help