aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/css/object-position/index.html
blob: 802800df3bc85d21183e11af1699da00a75dcada (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
119
120
121
122
123
---
title: object-position
slug: Web/CSS/object-position
tags:
  - CSS
  - CSS Property
  - Layout
  - Reference
  - Replaced Elements
  - 대체 요소
translation_of: Web/CSS/object-position
---
<div>{{CSSRef}}</div>

<p><span class="seoSummary"><a href="/ko/docs/Web/CSS">CSS</a> <strong><code>object-position</code></strong> 속성은 <a href="/ko/docs/Web/CSS/Replaced_element">대체 요소</a>의 콘텐츠 정렬 방식을 지정합니다.</span> 대체 요소의 객체가 덮지 않은 부분은 요소의 배경이 보이게 됩니다.</p>

<p>대체 요소 객체의 고유 크기(수정을 가하지 않은 원래 크기)를 조정해 요소 박스에 맞추는 방법은 {{cssxref("object-fit")}} 속성으로 지정할 수 있습니다.</p>

<div>{{EmbedInteractiveExample("pages/css/object-position.html")}}</div>



<h2 id="Syntax" name="Syntax">구문</h2>

<pre class="brush:css no-line-numbers notranslate">/* &lt;position&gt; 값 */
object-position: center top;
object-position: 100px 50px;

/* 전역 값 */
object-position: inherit;
object-position: initial;
object-position: unset;
</pre>

<h3 id="Values" name="Values"></h3>

<dl>
 <dt>{{cssxref("&lt;position&gt;")}}</dt>
 <dd>객체의 2D 위치를 지정하는 한 개에서 네 개의 값. 상대와 절대 오프셋을 사용할 수 있습니다.</dd>
</dl>

<div class="note">
<p><strong>참고:</strong> 콘텐츠가 대체 요소의 박스 바깥으로 나가도록 지정할 수도 있습니다.</p>
</div>

<h2 id="형식_정의">형식 정의</h2>

<p>{{cssinfo}}</p>

<h2 id="형식_구문">형식 구문</h2>

{{csssyntax}}

<h2 id="Example" name="Example">예제</h2>

<h3 id="이미지_콘텐츠_위치_지정">이미지 콘텐츠 위치 지정</h3>

<h4 id="HTML">HTML</h4>

<p>두 개의 {{htmlelement("img")}} 요소가 MDN 로고를 가리키는 코드입니다.</p>

<pre class="brush: html notranslate">&lt;img id="object-position-1" src="https://mdn.mozillademos.org/files/12668/MDN.svg" alt="MDN Logo"/&gt;
&lt;img id="object-position-2" src="https://mdn.mozillademos.org/files/12668/MDN.svg" alt="MDN Logo"/&gt;
</pre>

<h4 id="CSS">CSS</h4>

<p>다음 CSS는 두 <code>&lt;img&gt;</code> 요소 모두에 적용할 스타일과 함께, 각각 별도로 적용할 <code>object-position</code> 속성도 지정하고 있습니다.</p>

<pre class="brush: css notranslate">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>

<h4 id="결과">결과</h4>

<p>{{ EmbedLiveSample('이미지_콘텐츠_위치_지정', '100%','600px') }}</p>

<h2 id="Specifications" name="Specifications">명세</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>

<h2 id="Browser_compatibility" name="Browser_compatibility">브라우저 호환성</h2>



<p>{{Compat("css.properties.object-position")}}</p>

<h2 id="See_also" name="See_also">같이 보기</h2>

<ul>
 <li>이미지 관련 다른 CSS 속성: {{cssxref("object-fit")}}, {{cssxref("image-orientation")}}, {{cssxref("image-rendering")}}, {{cssxref("image-resolution")}}.</li>
</ul>