CSS书写规范
css吧
全部回复
仅看楼主
level 11
狼黎殇83c 楼主
tab 用两个空格表示;
css的 :后加个空格, {前加个空格;
每条声明后都加上分号;
换行,而不是放到一行;
颜色用小写,用缩写, #fff;
小数不用写前缀, 0.5s -> .5s;0不用加单位;
尽量缩写, margin: 5px 10px 5px 10px -> margin: 5px 10px。
2023年02月01日 08点02分 1
level 12
1、定位属性:position display float left top right bottom overflow clear z-index
2、自身属性:width height padding border margin background
3、文字样式:font-family font-size font-style font-weight font-varient color
4、文本属性:text-align vertical-align text-wrap text-transform text-indent text-decoration letter-spacing word-spacing white-space text-overflow
5、css3中新增属性:content box-shadow border-radius transform……
2023年02月01日 09点02分 2
1