H5 css属性简写

font缩写

/*
如果用 font 属性的话,就可以把几个样式进行简化,减少书的情况;
font 属性的值应按以下次序书写(各个属性之间用空格隔开):
顺序:font-style(字体样式)(normal(正常)、italic(斜体)或oblique(倾斜)): normal(正常)、
italic(斜体)或oblique(倾斜); 
| font-variant(字体变化): | font-weight(字体浓淡): 
| font-size | line-height | font-family
*/

background 缩写

语法:
Object.style.background=
background-color
 background-image
background-repeat 
background-attachment
background-position


参数 描述
background-color 设置元素的背景色。
background-image 设置背景图像。
background-repeat 设置背景图像是否及如何重复。
background-attachment 背景图像是否固定或者随着页面的其余部分滚动。
background-position 设置背景图像的起始位置。

下面是相应参数对应的值


background-color    设置元素的背景色。   
color-name
color-rgb
color-hex
transparent
background-image    设置背景图像。 
url(URL)
none
background-repeat   设置背景图像是否及如何重复。  
repeat
repeat-x
repeat-y
no-repeat
background-attachment   背景图像是否固定或者随着页面的其余部分滚动。  
scroll
fixed
background-position 设置背景图像的起始位置。    
top left
top center
top right
center left
center center
center right
bottom left
bottom center
bottom right
x% y%
xpos ypos

文章陆续更新中...

你可能感兴趣的:(H5 css属性简写)