組件塊和子組件塊
以及聲明塊
之間使用一空行分隔,子組件塊
之間三空行分隔;良好的注釋是非常重要的。請(qǐng)留出時(shí)間來(lái)描述組件(component)的工作方式、局限性和構(gòu)建它們的方法。不要讓你的團(tuán)隊(duì)其它成員 來(lái)猜測(cè)一段不通用或不明顯的代碼的目的。
提示:通過(guò)配置編輯器,可以提供快捷鍵來(lái)輸出一致認(rèn)可的注釋模式。
/* ==========================================================================
組件塊
============================================================================ */
/* 子組件塊
============================================================================ */
.selector {
padding: 15px;
margin-bottom: 15px;
}
/* 子組件塊
============================================================================ */
.selector-secondary {
display: block; /* 注釋*/
}
.selector-three {
display: span;
}
出于性能考量,在沒(méi)有必要的情況下避免元素選擇器疊加 Class、ID 使用。
元素選擇器和 ID、Class 混合使用也違反關(guān)注分離原則。如果HTML標(biāo)簽修改了,就要再去修改 CSS 代碼,不利于后期維護(hù)。
/* Not recommended */
.red {}
.box_green {}
.page .header .login #username input {}
ul#example {}
/* Recommended */
#nav {}
.box-video {}
#username input {}
#example {}
{
前添加一個(gè)空格;}
應(yīng)單獨(dú)成行;:
后應(yīng)添加一個(gè)空格;;
結(jié)尾;rgb()
、rgba()
、hsl()
、hsla()
或 rect()
括號(hào)內(nèi)的值,逗號(hào)分隔,但逗號(hào)后不添加一個(gè)空格;.5
代替 0.5
;-.5px
代替-0.5px
);#fff
代替 #ffffff
;margin: 0;
代替 margin: 0px;
;/* Not recommended */
.selector, .selector-secondary, .selector[type=text] {
padding:15px;
margin:0px 0px 15px;
background-color:rgba(0, 0, 0, 0.5);
box-shadow:0px 1px 2px #CCC,inset 0 1px 0 #FFFFFF
}
/* Recommended */
.selector,
.selector-secondary,
.selector[type="text"] {
padding: 15px;
margin-bottom: 15px;
background-color: rgba(0,0,0,.5);
box-shadow: 0 1px 2px #ccc, inset 0 1px 0 #fff;
}
相關(guān)屬性應(yīng)為一組,推薦的樣式編寫(xiě)順序
由于定位(positioning)可以從正常的文檔流中移除元素,并且還能覆蓋盒模型(box model)相關(guān)的樣式,因此排在首位。盒模型決定了組件的尺寸和位置,因此排在第二位。
其他屬性只是影響組件的內(nèi)部(inside)或者是不影響前兩組屬性,因此排在后面。
.declaration-order {
/* Positioning */
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 100;
/* Box model */
display: block;
box-sizing: border-box;
width: 100px;
height: 100px;
padding: 10px;
border: 1px solid #e5e5e5;
border-radius: 3px;
margin: 10px;
float: right;
overflow: hidden;
/* Typographic */
font: normal 13px "Helvetica Neue", sans-serif;
line-height: 1.5;
text-align: center;
/* Visual */
background-color: #f5f5f5;
color: #fff;
opacity: .8;
/* Other */
cursor: pointer;
}
url()
、屬性選擇符、屬性值使用雙引號(hào)。 參考 Is quoting the value of url() really necessary?
/* Not recommended */
@import url(//www.google.com/css/maia.css);
html {
font-family: 'open sans', arial, sans-serif;
}
/* Recommended */
@import url("http://www.google.com/css/maia.css");
html {
font-family: "open sans", arial, sans-serif;
}
.selector[type="text"] {
}
將媒體查詢放在盡可能相關(guān)規(guī)則的附近。不要將他們打包放在一個(gè)單一樣式文件中或者放在文檔底部。如果你把他們分開(kāi)了,將來(lái)只會(huì)被大家遺忘。
.element { ... }
.element-avatar { ... }
.element-selected { ... }
@media (max-width: 768px) {
.element { ...}
.element-avatar { ... }
.element-selected { ... }
}
@import
與 <link>
相比,@import
要慢很多,不光增加額外的請(qǐng)求數(shù),還會(huì)導(dǎo)致不可預(yù)料的問(wèn)題。
替代辦法:
a:link -> a:visited -> a:hover -> a:active(LoVeHAte)
使用 Autoprefixer 自動(dòng)添加瀏覽器廠商前綴,編寫(xiě) CSS 時(shí)不需要添加瀏覽器前綴,直接使用標(biāo)準(zhǔn)的 CSS 編寫(xiě)。
Autoprefixer 通過(guò) Can I use,按兼容的要求,對(duì)相應(yīng)的 CSS 代碼添加瀏覽器廠商前綴。
更多建議: