首页 > 代码库 > Background的5个基本属性

Background的5个基本属性

background-attachment
background-attachment:scroll | fixed    scroll:背景图像是随对象内容滚动。  fixed:背景图像固定。
background-color:

background-color:transparent | color transparent:背景透明色。 color:指定颜色
background-image
background-image:none | url        none:无背景图。    url:使用绝对或相对地址指定背景图像。
background-position
background-position : length || length   length :  百分数 | 由浮点数字和单位标识符组成的长度值。
background-position: 30% 20%; 
background-position: 50px 100px;

background-position : position || position position :  top | center | bottom | left | center | right
background-position: top  center

background-positionX : length | left | center | right length :  百分数 | 由浮点数字和单位标识符 组成的长度值。 left :  居左 ,center :  居中 ,right :  居右
background-positionx: center  15px

background-positionY : length | top | center | bottom length :  百分数 | 由浮点数字和单位标识符组成的长度值。left :  居左 ,center :  居中 ,right :  居右
background-repeat
background-repeat : repeat | no-repeat | repeat-x | repeat-y   repeat :  背景图像在纵向和横向上平铺,no-repeat :  背景图像不平铺,repeat-x :  背景图像在横向上平铺,repeat-y :  背景图像在纵向平铺