高效的CSS写法中的一条就是使用简写。通过简写可以让你的CSS文件更小,更易读。而了解CSS属性简写也是前端开发工程师的基本功之一。今天我们系统地总结一下CSS属性的缩写。
色彩缩写色彩的缩写最简单,在色彩值用16进制的时候,如果每种颜色的值相同,就可以写成一个:
color:#113366
可以简写为
color:#136
所有用到16进制色彩值的地方都可以使用简写,比如background-color
、border-color
、text-shadow
、box-shadow
等。
这里主要用于两个属性:margin
和padding
,我们以margin
为例,padding
与之相同。盒子有上下左右四个方向,每个方向都有个外边距:
margin-top:1px;
margin-right:1px;
margin-botton:1px;
margin-left:1px;
这四个值可以缩写到一起:
margin:1px 1px 1px 1px;
缩写的顺序是上->右->下->左。顺时针的方向。相对的边的值相同,则可以省掉:
margin:1px;//四个方向的边距相同,等同于margin:1px 1px 1px 1px;
margin:1px 2px;//上下边距都为1px,左右边距均为2px,等同于margin:1px 2px 1px 2px
margin:1px 2px 3px;//右边距和左边距相同,等同于margin:1px 2px 3px 2px;
margin:1px 2px 1px 3px;//注意,这里虽然上下边距都为1px,但是这里不能缩写。
边框(border)
border是个比较灵活的属性,它有border-width
、border-style
、border-color
三个子属性。
border-width
:数字+单位;
border-style
:none
||hidden
||dashed
||dotted
||double
||groove
||inset
||outset
||ridge
||solid
;
border-color
: 颜色 ;
它可以按照width
、style
和color
的顺序简写:
border:5px solid #369;
有的时候,border可以写的更简单些,有些值可以省掉,但是请注意哪些是必须的,你也可以测试一下:
border:groove red; //大家猜猜这个边框的宽度是多少?
border:solid; //这会是什么样子?
border:5px; //这样可以吗?
border:5px red; //这样可以吗??
border:red; //这样可以吗???
通过上面的代码可以了解到,border
默认的宽度是3px,默认的色彩是black——黑色。默认的颜色是该规则中的color
属性的值,而color
默认是黑色的(多谢 @birdstudio的提醒 )。border
的缩写中border-style
是必须的。
同时,还可以对每条边采用缩写:
border-top:4px solid #333;
border-right:3px solid #666;
border-bottom:3px solid #666;
border-left:4px solid #333;
还可以对每个属性采用缩写:
border-width:1px 2px 3px; //最多可用四个值,缩写规则类似盒子大小的缩写,下同
border-style:solid dashed dotted groove;
border-color:red blue white black;
outline
outline
类似border
,不同的是border
会影响盒模型,而outline
不会。
outline-width
:数字+单位;
outline-style
:none
||dashed
||dotted
||double
||groove
||inset
||outset
||ridge
||solid
;
outline-color
: 颜色 ;
可以缩写为:
outline:1px solid red;
同样,outline
的简写中,outline-style
也是必须的,另外两个值则可选,默认值和border
相同。
background是最常用的简写之一,它包含以下属性:
background-color
:color
||#hex
||RGB(%||0-255)
||RGBa
;
background-image
:url()
;background-repeat:repeat
||repeat-x
||repeat-y
||no-repeat
;
background-position
:X
Y
|| (top
||bottom
||center
) (left
||right
||center
);
background-attachment
:scroll
||fixed
;
background的简写可以大大的提高css的效率:
background:#fff url(img.png) no-repeat 0 0;
background的简写也有些默认值:
background:transparent none repeat scroll top left ;
background属性的值不会继承,你可以只声明其中的一个,其它的值会被应用默认的。
fontfont简写也是使用最多的一个,它也是书写高效的CSS的方法之一。
font包含以下属性:
font-style
:normal
||italic
||oblique
;
font-variant
:normal
||small-caps
;
font-weight
:normal
||bold
||bolder
|| ||lighter
|| (100-900)
;
font-size
: (number+unit)
|| (xx-small
-xx-large
);
line-height
:normal
|| (number+unit)
;
font-family
:name
,"more names
";
font的各个属性也都有默认值,记住这些默认值相对来说比较重要:
font-style: normal;
font-variant:normal;
font-weight: normal;
font-size: inherit;
line-height: normal;
font-family:inherit;
事实上,font的简写是这些简写中最需要小心的一个,稍有疏忽就会造成一些意想不到的后果,所以,很多人并不赞成使用font缩写。
不过这里正好有个小手册,相信会让你更好的理解font的简写:
列表样式可能大家用的最多的一条关于列表的属性就是:
list-style:none
它会清除所有默认的列表样式,比如数字或者圆点。
list-style
也有三个属性:
list-style-type
:none
||disc
||circle
||square
||decimal
||lower-alpha
||upper-alpha
||lower-roman
||upper-roman
list-style-position
:inside
||outside
||inherit
list-style-image
: (url)
||none
||inherit
list-style
的默认属性如下:
list-style:disc outside none
需要注意的是,如果list-tyle
中定义了图片,那么图片的优先级要比list-style-type
高,比如:
list-style:circle inside url(../img.gif)
这个例子中,如果img.gif
存在,则不会显示前面设置的circle
符号。
PS:其实list-style-type
有很多种很有用的样式,感兴趣的同学可以参考一下:https://developer.mozilla.org/en/CSS/list-style-type
border-radius
是css3中新加入的属性,用来实现圆角边框。这个属性目前不好的一点儿是,各个浏览器对它的支持不同,IE尚不支持,Gecko(firefox)和webkit(safari/chrome)等需分别使用私有前缀-moz-
和-webkit-
。更让人纠结的是,如果单个角的border-radius
属性的写法在这两个浏览器的差异更大,你要书写大量的私有属性:
-moz-border-radius-bottomleft:6px;
-moz-border-radius-topleft:6px;
-moz-border-radius-topright:6px;
-webkit-border-bottom-left-radius:6px;
-webkit-border-top-left-radius:6px;
-webkit-border-top-right-radius:6px;
border-bottom-left-radius:6px;
border-top-left-radius:6px;
border-top-right-radius:6px;
呃,是不是你已经看的眼花了?这只是要实现左上角不是圆角,其它三个角都是圆角的情况。所以对于border-radius
,神飞强烈建议使用缩写:
-moz-border-radius:0 6px 6px;
-webkit-border-radius:0 6px 6px;
border-radius:0 6px 6px;
这样就简单了很多。PS:不幸的是,最新的Safari(4.0.5)还不支持这种缩写… (thanks @fireyy)
就总结这么多,还有其它的可以缩写的属性吗?欢迎大家提出一起讨论。
参考资源- 常用CSS缩写语法总结:www.w3cn.org/article/tips/2005/103.html
- CSS Shorthand Guide
- Efficient CSS with shorthand properties
- Mozilla Developer Center:CSS Reference
- CSS Font Shorthand Property Cheat Sheet
作者:神飞
文章源自:www.qianduan.net/css-font-shorthand-attribute-handbook/
共同学习,写下你的评论
评论加载中...
作者其他优质文章