代码规范
一般性命名
使用小写字母,复合词以 - 分隔; 例如 nav.css , login-nav.css , login-page.css
id 和类的命名
为 id 和样式类使用有意义或通用的名字,避免由于 css 命名更改引起的不必要的文档或模板改变;
例如:
1 2 3 4 5 6 7 8 9 10 11 12 13
| #yee-1901 {}
.button-green {}
#gallery {} #login {} .video {}
.effect {} .alt {}
|
id 和 class 的命名长度应该适中,不要太简略也不要太详细;
例如:
1 2 3 4 5 6
| #navigation {} .atr {}
#nav {} .author {}
|
元素选择器
为了 性能原因 , 请避免元素选择器和类选择器以及 id 选择器混用;
例如:
1 2 3 4 5 6
| ul#example {} div.error {}
#example {} .error {}
|
简写属性名字
为了提高可读性,尽可能的使用简写属性;
例如:
1 2 3 4 5 6 7 8 9 10 11 12 13
| border-top-style: none; font-family: palatino, georgia, serif; font-size: 100%; line-height: 1.6; padding-bottom: 2em; padding-left: 1em; padding-right: 1em; padding-top: 0;
border-top: 0; font: 100%/1.6 palatino, georgia, serif; padding: 0 1em 2em;
|
0 和单位
对属性值为 0 的情况省略单位;
例如:
0 前缀情况
省略属性值中的 0 前缀;
例如:
16 进制的颜色值表示
尽可能使用 3 个字符的 16 进制颜色值;
例如:
1 2 3 4
| color: #eebbcc;
color: #ebc;
|
前缀
为了防止冲突,对于应用特定的样式附加应用前缀;
例如:
1 2
| .login-help {} #detail-note {}
|
hacks
避免 css hack , 考虑使用特定浏览器前缀表示;
例如:
1 2 3
| .ks-ie6 p { margin: 1em 0; }
|
格式规范
属性声明顺序
按照字母顺序声明属性,排序时忽略私有的浏览器前缀,对于特定的浏览器,私有的浏览器前缀应该参与排序;
例如:
1 2 3 4 5 6 7 8
| background: fuchsia; border: 1px solid; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; color: black; text-align: center; text-indent: 2em;
|
块缩进
块的内容应该被缩进;
例如:
1 2 3 4 5 6 7 8
| @media screen, projection {
html { background: #fff; color: #444; }
}
|
分号
使用分号结束单个属性的定义;
例如:
1 2 3 4 5 6 7 8 9 10
| .test { display: block; height: 100px }
.test { display: block; height: 100px; }
|
空格
在属性名冒号后加一个空格;
例如:
1 2 3 4 5 6 7 8
| .test { display:block; }
.test { display: block; }
|
空行
多个选择以及声明间以行分隔;
例如:
1 2 3 4 5 6 7 8 9 10 11
| a:focus, a:active { position: relative; top: 1px; }
h1, h2, h3 { font-weight: normal; line-height: 1.2; }
|
多个 css 规则间以空行分隔;
例如:
1 2 3 4 5 6 7 8
| html { background: #fff; }
body { margin: auto; width: 50%; }
|
引号
尽可能的不用引号,迫不得已时使用单引号;
1 2 3 4 5 6 7 8 9 10 11 12
| @import url("//www.google.com/css/maia.css");
html { font-family: "open sans", arial, sans-serif; }
@import url(//www.google.com/css/maia.css);
html { font-family: 'open sans', arial, sans-serif; }
|
注释
成组的 css 规则间用块状注释和空行分离;
例如:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#login-header {}
#login-header-below {}
#login-footer {}
#login-footer-below {}
.login-gallery {}
.login-gallery-other {}
|