CSS
文件使用无 BOM
的 UTF-8
编码。4
个空格做为一个缩进层级,不允许使用 2
个空格 或 tab
字符。选择器
与 {
之间必须包含空格。.selector {
}
属性名
与之后的 :
之间不允许包含空格, :
与 属性值
之间必须包含空格。margin: 0;
列表型属性值
书写在单行时,,
后必须跟一个空格。font-family: Arial, sans-serif;
120
个字符,除非单行不可分割。空格
处或 ,
后换行,建议按逻辑分组。/* 不同属性值按逻辑分组 */ background: transparent url(aVeryVeryVeryLongUrlIsPlacedHere) no-repeat 0 0; /* 可重复多次的属性,每次重复一行 */ background-image: url(aVeryVeryVeryLongUrlIsPlacedHere) url(anotherVeryVeryVeryLongUrlIsPlacedHere); /* 类似函数的属性值可以根据函数调用的缩进进行 */ background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.04, rgb(88,94,124)), color-stop(0.52, rgb(115,123,162)) );
/* good */ .post, .page, .comment { line-height: 1.5; } /* bad */ .post, .page, .comment { line-height: 1.5; }
>
、+
、~
选择器的两边各保留一个空格。/* good */ main > nav { padding: 10px; } label + input { margin-left: 5px; } input:checked ~ button { background-color: #69C; } /* bad */ main>nav { padding: 10px; } label+input { margin-left: 5px; } input:checked~button { background-color: #69C; }
不允许使用单引号,不允许不使用引号。
1.6 属性
/* good */ .selector { margin: 0; padding: 0; } /* bad */ .selector { margin: 0; padding: 0; }
2.通用
2.1选择器
id
、class
选择器添加类型选择器进行限定。在性能和维护性上,都有一定的影响。
/* good */ #error, .danger-message { font-color: #c00; } /* bad */ dialog#error, p.danger-message { font-color: #c00; }
3
级,位置靠后的限定条件应尽可能精确。
/* good */ .post { font: 12px/1.5 arial, sans-serif; } /* bad */ .post { font-family: arial, sans-serif; font-size: 12px; line-height: 1.5; }
border
/ margin
/ padding
等缩写时,应注意隐含值对实际数值的影响,确实需要设置多个方向的值时才使用缩写。
position
/ top
/ right
/ bottom
/ left
/ float
/ display
/ overflow
等border
/ margin
/ padding
/ width
/ height
等font
/ line-height
/ text-align
/ word-wrap
等background
/ color
/ transition
/ list-style
等另外,如果包含 content
属性,应放在最前面。
clear
或触发 BFC
的方式进行 clearfix
。尽量不使用增加空标签的方式。
触发 BFC 的方式很多,常见的有:
另需注意,对已经触发 BFC 的元素不需要再进行 clearfix。
!important
声明。!important
定义样式。
2.6 z-index
z-index
进行分层,对文档流外绝对定位元素的视觉层级关系进行管理。 同层的多个元素,如多个由用户输入触发的 Dialog,在该层级内使用相同的 z-index
或递增 z-index
。
建议每层包含100个 z-index
来容纳足够的元素,如果每层元素较多,可以调整这个数值。
z-index
指定为 999999
。!important
,将 z-index
指定为 2147483647
。第三方环境对于开发者来说完全不可控。在第三方环境下的元素,为了保证元素不被其页面其他样式定义覆盖,需要采用此做法。
文本类型的内容可能在选择器、属性值等内容中。
0
。/* good */ panel { opacity: .8; } /* bad */ panel { opacity: 0.8; }
url()
函数中的路径不加引号。body { background: url(bg.png); }
url()
函数中的绝对路径可省去协议名。body { background: url(//baidu.com/img/bg.png) no-repeat 0 0; }
0
时须省略单位。 (也只有长度单位可省)#rrggbb
。不允许使用 rgb()
。使用 rgba()
时每个逗号后必须保留一个空格。
/* good */ .success { box-shadow: 0 0 2px rgba(0, 128, 0, .3); border-color: #008000; } /* bad */ .success { box-shadow: 0 0 2px rgba(0,128,0,.3); border-color: rgb(0, 128, 0); }
/* good */ .success { background-color: #aca; } /* bad */ .success { background-color: #aaccaa; }
/* good */ .success { color: #90ee90; } /* bad */ .success { color: lightgreen; }
原文:https://www.cnblogs.com/namehou/p/10487990.html