如何定位background-image:
background-position属性设置背景图像的起始位置。
注意对于这个工作在Firefox和Opera,background-attachment必须设置为 "fixed(固定)".
| 默认值: | 0% 0% | 
|---|---|
| 继承: | no | 
| 版本: | CSS1 | 
| JavaScript 语法: | object object.style.backgroundPosition="center" | 
	![]()
![]()
![]()
![]()
 
所有主要浏览器都支持background-position属性。
注意 IE7和更早的版本不支持"inherit(继承)"的值。 IE8需要定义!DOCTYPE。 IE9支持"inherit(继承)"。
| 值 | 描述 | 
|---|---|
| 
				left top left center left bottom right top right center right bottom center top center center center bottom  | 
			如果仅指定一个关键字,其他值将会是"center" | 
| x% y% | 第一个值是水平位置,第二个值是垂直。左上角是0%0%。右下角是100%100%。如果仅指定了一个值,其他值将是50%。 。默认值为:0%0% | 
| xpos ypos | 第一个值是水平位置,第二个值是垂直。左上角是0。单位可以是像素(0px0px)或任何其他 CSS单位。如果仅指定了一个值,其他值将是50%。你可以混合使用%和positions | 
| inherit | 指定background-position属性设置应该从父元素继承 | 
CSS 教程: CSS Background
CSS 参考手册: background-image 属性