background-position
- 版本:CSS1/3
- 媒体:视觉
语法:
background-position:<position> [ , <position> ]*
<position> = [ left | center | right | top | bottom | <percentage> | <length> ] | [ left | center | right | <percentage> | <length> ] [ top | center | bottom | <percentage> | <length> ] | [ center | [ left | right ] [ <percentage> | <length> ]? ] && [ center | [ top | bottom ] [ <percentage> | <length> ]? ]
默认值:0% 0%,效果等同于left top
适用于:所有元素
继承性:无
动画性:是
计算值:指定值
取值:
- <percentage>:
- 用百分比指定背景图像填充的位置。可以为负值。
- <length>:
- 用长度值指定背景图像填充的位置。可以为负值。
- center:
- 背景图像横向和纵向居中。
- left:
- 背景图像在横向上填充从左边开始。
- right:
- 背景图像在横向上填充从右边开始。
- top:
- 背景图像在纵向上填充从顶部开始。
- bottom:
- 背景图像在纵向上填充从底部开始。
说明:
设置或检索对象的背景图像位置。必须先指定background-image属性。
- 该属性提供2个参数值。
- 如果提供四个,每个<percentage>或<length>偏移前都必须跟着一个关键字(即left | center | right | top | bottom),偏移量相对关键字位置进行偏移。
-
示例:假设要定义背景图像在容器中右下方,并且距离右边和底部各有20px
缩写方式:
background:url(test1.jpg) no-repeat right 20px bottom 20px;
拆分方式:
background:url(test1.jpg) no-repeat left bottom 10px;
要注意的是:设置3个或4个值,偏移量前必须有关键字。也就是说,形如:"10px bottom 20px" ,这样的参数设置是错误的,因为10px前面没有关键字。
- 如果提供两个,第一个用于横坐标,第二个用于纵坐标。
- 如果只提供一个,该值将用于横坐标;纵坐标将默认为50%(即center)。
- 对应的脚本特性为backgroundPosition。