13.1.2 CSS缩写属性

CSS中有些属性属于缩写属性,即允许使用一个属性设置多个属性值

例如,background属性是缩写属性,它可以一次设置background-colorbackground-imagebackground-repeatbackground-attachmentbackground-position的属性值。

在缩写属性中如果有一些值被省略,那么被省略的属性就被赋予其初始值。

div
{
	background-color:red;
	background-image:none;
	background-repeat:repeat;
	background-repeat:0% 0%;
	background-attachment:scroll;
}

等价于

div
{
	background:red;
}

示例中background-imagebackground-repeatbackground-attachmentbackground-position这四个属性设置的值都是其初始值,因此可以省略

其它CSS缩写属性

CSS font 属性,可以表示font-stylefont-variantfont-weightfont-size、line-height、font-family

CSS list-style 属性,可以表示list-style-typelist-style-positionlist-style-image

CSS border 属性,可以表示border-widthborder-styleborder-color



  • 教程中有什么不懂的地方?发现教程的错误!对教程有什么建议!快快给我留言呀 给猴子留言,我会尽快解答你的问题:)
  • HTML代码