命名技巧
- 语义化标签优先
- 基于功能命名、基于内容命名、基于表现命名
- 简洁、明了、无后患
范例一
<!-- 不好 -->
<div class="article">
<div class="article_title">编码规范</div>
<div class="the_content">今天讲的内容是编码规范,讲师
<div class="darkbold">若愚</div> @饥人谷</div>
</div
<!-- 好 -->
<article>
<h1>编码规范</h1>
<p>今天讲的内容是编码规范,讲师
<b>若愚</b> @饥人谷</p>
</article>
范例二
<!-- 不好 -->
<div class="left"></div>
<div class="red"></div>
<div class="s"></div>
<a class="link" href="#"></a>
<!-- 好 -->
<div class="success"></div>
<div class="theme-color"></div>
<a class="login" href="#"></a>
范例三
<!-- 好 -->
<article class="movies">...</article>
<article class="news">...</article>
<!-- 不好 -->
<article class="blue">...</article>
<article class="redBg mt30 bigText">...</article>
命名范例
1.所有命名都使用英文小写
推荐:`<div class="main"></div> `
不推荐: `<div class="Main"></div> `
2.命名用引号包裹
推荐:`<div id="header"></div> `
不推荐: `<div id=header></div> `
3.用中横线连接
推荐:`<div class="mod-modal"></div> `
不推荐: `<div class="modModal"></div> `
4.命名体现功能,不涉及表现样式(颜色、字体、边框、背景等)
推荐:`<div class="text-lesser"></div>`
不推荐: `<div class="light-grey"></div>`
CSS规范
书写规范
-
tab
用两个空格表示 - css的
:
后加个空格,{
前加个空格 - 每条声明后都加上分号
- 换行,而不是放到一行
- 颜色用小写,用缩写,
#fff
- 小数不用写前缀,
0.5s
->.5s
;0不用加单位 - 尽量缩写,
margin: 5px 10px 5px 10px
->margin: 5px 10px
范例
/* 不推荐 */
.test {
display: block;
height: 100px
}
/* 推荐 */
.test {
display: block;
height: 100px;
}
/* 不推荐 */
h3 {
font-weight:bold;
}
/* 推荐 */
h3 {
font-weight: bold;
}
/* 不推荐: 选择器后没空格 */
#video{
margin-top: 1em;
}
/* 不推荐: 不必要的换行 */
#video
{
margin-top: 1em;
}
/* 推荐 */
#video {
margin-top: 1em;
}
/* 不推荐 */
a:focus, a:active {
position: relative; top: 1px;
}
/* 推荐 */
h1,
h2,
h3 {
font-weight: normal;
line-height: 1.2;
}
/* 保持一个空行. */
html {
background: #fff;
}
body {
margin: auto;
width: 50%;
}
/* 不推荐 */
@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;
}