目录

CSS object-position 属性


示例

调整图片大小以适合其内容框,并将图片放置在内容框内距左侧 5 像素、距顶部 10% 的位置:

img.a {
  width: 200px;
  height: 400px;
  object-fit: none;
  object-position: 5px 10%;
  border: 5px solid red;
}
亲自试一试 »

定义和用法

这个object-position属性与 object-fit 一起使用来指定 <img> 或 <video> 的 x/y 坐标应如何定位在其 "own content box" 内。

展示演示❯

默认值: 50% 50%
遗传: 是的
可动画: 是的。阅读可动画的尝试一下
版本: CSS3
JavaScript 语法: 对象.style.objectPosition="0 10%"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
object-position 31.0 16.0 36.0 10.0 19.0


CSS 语法

object-position: position|initial|inherit;

属性值

Value Description Demo
position Specifies the position of the image or video inside its content box. First value controls the x-axis and the second value controls the y-axis. Can be a string (left, center or right), or a number (in px or %). Negative values are allowed 尝试一下 »
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

相关页面

CSS教程:CSS 对象适配

CSS 参考:CSS 对象适配

HTML DOM 参考:对象位置属性