CSS background-position 属性
实例
如何定位 background-image:
body
{
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}
亲自试一试 »
下面有更多实例。
定义和用法
background-position
属性设置背景图像的起始位置。
提示: 默认情况下,background-image 背景图像放置在元素的左上角,并在垂直和水平方向上重复。
注意: 对于在 Firefox 和 Opera,background-attachment 必须设置为 "fixed(固定)".
默认值: | 0% 0% |
---|---|
继承性: | no |
支持动画: | yes. 阅读有关动画的信息 测试一下 |
版本: | CSS1 |
JavaScript 语法: | object.style.backgroundPosition="center" 测试一下 |
浏览器支持
表中的数字表示支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
background-position | 1.0 | 4.0 | 1.0 | 1.0 | 3.5 |
注释: IE8 及更早的浏览器版本不支持一个元素有多个背景图片。
语法
background-position: value;
属性值
值 | 描述 | 试一试 |
---|---|---|
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%0%,右下角是100%100%。如果仅指定了一个值,其他值将是50%,默认值为:0%0% | 亲自试一试 » |
initial | 将此属性设置为其默认值。请参阅 initial | 亲自试一试 » |
inherit | 从其父元素继承此属性。请参阅 inherit |
更多实例
实例
如何将背景图像放置在顶部居中:
body
{
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center top;
}
亲自试一试 »
实例
如何将背景图像定位为右下角:
body
{
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: bottom right;
}
亲自试一试 »
实例
如何使用百分比定位背景图像:
body
{
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: 50% 50%;
}
亲自试一试 »
实例
如何使用像素定位背景图像:
body
{
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: 50px 150px;
}
亲自试一试 »
实例
使用不同的背景属性创建 "hero" 图像:
.hero-image {
background-image: url("photographer.jpg"); /* 使用的图像 */
background-color: #cccccc; /* 图像不可用时使用 */
height: 500px; /* 您必须设置指定的高度 */
background-position: center; /* 居中图像 */
background-repeat: no-repeat; /* 不要重复图像 */
background-size: cover; /* 调整背景图像的大小以覆盖整个容器 */
}
亲自试一试 »
相关页面
CSS 教程: CSS 背景
CSS 参考手册: background-image 属性
HTML DOM 参考手册: backgroundPosition 属性