调整图片大小以适合其内容框,并将图片放置在内容框内距左侧 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" 内。
表中的数字指定完全支持该属性的第一个浏览器版本。
Property | |||||
---|---|---|---|---|---|
object-position | 31.0 | 16.0 | 36.0 | 10.0 | 19.0 |
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 参考:对象位置属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!