目录

style objectPosition 属性

示例

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

document.getElementById("myImg").style.objectPosition = "0 10%";
亲自试一试 »

描述

objectPosition 属性用于指定 <img> 或 <video> 在其自己的内容框中的位置。


浏览器支持

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

Property
objectPosition 31.0 16.0 36.0 10.1 19.0

语法

返回 objectPosition 属性:

object.style.objectPosition

设置对象位置属性:

object.style.objectPosition = " position|initial|inherit"

属性值

Value Description
position Specifies the position of the image or video inside its content box. First value controls the x-asis 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

技术细节

默认值: 50% 50%
返回值: 字符串或数字,表示元素在其内容框中的位置
CSS版本 CSS3

相关页面

CSS教程:CSS 对象适配

CSS 参考:对象位置属性