blob: c7ab78ad9866e9d58cd6d3889c9b6725f99cb45a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
---
title: object-position
slug: Web/CSS/object-position
tags:
- CSS
- CSS属性
- object-position
translation_of: Web/CSS/object-position
---
<div>{{CSSRef}}</div>
<p><a href="/zh-CN/docs/Web/CSS">CSS</a> 属性 <strong><code>object-position</code></strong> 规定了<a href="/zh-CN/docs/Web/CSS/Replaced_element">可替换元素</a>的内容,在这里我们称其为对象(即 <strong><code>object-position</code></strong> 中的 <strong><code>object</code>)</strong>,在其内容框中的位置。可替换元素的内容框中未被对象所覆盖的部分,则会显示该元素的背景({{cssxref("background")}})。</p>
<p>你还可以使用 {{cssxref("object-fit")}} 属性来改变可替换元素的对象的内在(原文:intrinsic)大小(即它看上去的大小)的调整方式,借助拉伸与缩放等使对象更好地适应元素的内容框。</p>
<div>{{EmbedInteractiveExample("pages/css/object-position.html")}}</div>
<h2 id="语法">语法</h2>
<pre class="brush:css no-line-numbers">/* <position> values */
object-position: center top;
object-position: 100px 50px;
/* Global values */
object-position: inherit;
object-position: initial;
object-position: unset;
</pre>
<h3 id="取值">取值</h3>
<dl>
<dt>{{cssxref("<position>")}}</dt>
<dd>使用 1 到 4 个值来定义该元素在它所处的二维平面中的定位。可以使用相对或绝对偏移。</dd>
</dl>
<div class="note">
<p><strong>注意:</strong>这些定位方式允许被替换元素的对象被定位到内容框外部。</p>
</div>
<h3 id="正式语法">正式语法</h3>
{{csssyntax}}
<h2 id="例子">例子</h2>
<h3 id="HTML">HTML</h3>
<p>Here we see HTML that includes two {{HTMLElement("img")}} elements, each displaying the MDN logo.</p>
<p>这里我们看到包含两个img元素的HTML,分别展示了MDN的logo</p>
<pre class="brush: html"><img id="object-position-1" src="https://mdn.mozillademos.org/files/12668/MDN.svg" alt="MDN Logo"/>
<img id="object-position-2" src="https://mdn.mozillademos.org/files/12668/MDN.svg" alt="MDN Logo"/>
</pre>
<h3 id="CSS">CSS</h3>
<p>CSS包括<img>元素本身的默认样式,以及两个图像各自的样式。</p>
<pre class="brush: css">img {
width: 300px;
height: 250px;
border: 1px solid black;
background-color: silver;
margin-right: 1em;
object-fit: none;
}
#object-position-1 {
object-position: 10px;
}
#object-position-2 {
object-position: 100% 10%;
}
</pre>
<p>第一个图像的左边缘距元素框左边缘10个像素。第二个图像的右边缘与元素框的右边缘齐平,并位于元素框高度下方10%处。</p>
<h3 id="输出">输出</h3>
<p>{{ EmbedLiveSample('Example', '100%','300px') }}</p>
<h2 id="规范">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Images', '#the-object-position', 'object-position')}}</td>
<td>{{Spec2('CSS3 Images')}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<p>{{cssinfo}}</p>
<h2 id="Browser_compatibility" name="Browser_compatibility">Browser compatibility</h2>
<p>{{Compat("css.properties.object-position")}}</p>
<h2 id="参见">参见</h2>
<ul>
<li>其他与图像相关的 CSS 属性: {{cssxref("object-fit")}},{{cssxref("image-orientation")}},{{cssxref("image-rendering")}},{{cssxref("image-resolution")}}。</li>
</ul>
|