定义和用法background-position 属性设置背景图像的起始位置。
这个属性设置背景原图像(由
background-image 定义)的位置,背景图像如果要重复,将从这一点开始。
提示:您需要把 background-attachment 属性设置为 "fixed",才能保证该属性在 Firefox 和 Opera 中正常工作。
默认值: | 0% 0% |
继承性: | no |
版本: | CSS1 |
JavaScript 语法: | object.style.backgroundPosition="center" |
实例如何定位背景图像:
body
{
background-image:url('bgimage.gif');
background-repeat:no-repeat;
background-attachment:fixed;
background-position:center;
}