码迷,mamicode.com
首页 > Web开发 > 详细

css规范<一>

时间:2017-02-14 13:54:43      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:html   strong   --   .class   推荐   code   one   input   .com   

详见<http://www.cnblogs.com/hustskyking/p/css-spec.html>

1.每个样式属性后加 ";"------------方便压缩工具"断句"。

2.空格的使用

1 .hotel-content {
2      display: none;
}

.选择器与 { 之前要有空格  

.属性名的 : 后要有空格

.属性名的 : 前不加空格

3.多选择器之间必须换行,这样比较清晰,

a.btn,
 input.btn,
 input{
      display:none;       
       }    

 4.Class中尽量不出现大写字母,采用"-"分割,这样比较清晰,

1 /* 正确的写法 */
2  .hotel-title {
3      font-weight: bold; }
/* 不推荐的写法 */ 4 .hotelTitle { 5 font-weight: bold; }

5.不要将样式写成单行,这样不方便注释,

1 hotel-content {margin: 10px; background-color: #efefef;}

6.尽量不要用"*"来选择元素

1 /*别这样写*/
2 * {
3     margin: 0;
4     padding: 0; 
5 }

因为:只有一部分元素在浏览器有默认的margin padding特性。
7.

 

css规范<一>

标签:html   strong   --   .class   推荐   code   one   input   .com   

原文地址:http://www.cnblogs.com/gaoxuerong123/p/6397042.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!