1.类名使用小写字母,以中划线分割;id 使用 驼峰式命名;
2.less/scss中的函数、混合采用驼峰命名;
3. class 的命名不要使用 标签名,如.p
.div
.img
;
尽量使用直接子选择器,否则,有时会造成性能损耗
.content .title { ... }
(不推荐)(后代选择器)
.content > .title { ... }
(推荐)(子选择器)
border-style: solid;
border-width: 1px;
border-color: red;`
写成
border: 1px solid red;
不推荐下面的这种写法
img { width: 100%;box-shadow: 3px 3px 3px 3px #333;}
width: 0;
height: 0;
border-width: 0;
能不用 id选择器 就不要 使用id选择器,避免不是禁止
1.全部采用小写的方式
2.以中划线分割
例:smart-cellphone
1.全部采用小写的方式
2.以中划线命名
3.复数时,要采用复数结构例:images
、assets
等;
全部采用小写的方式以中划线命名
例:home.html
/index.less
/public.css
/login-logo.jpg
等