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
|
---
title: border-image-outset
slug: Web/CSS/border-image-outset
tags:
- CSS
- CSS Borders
- CSS Property
- Reference
translation_of: Web/CSS/border-image-outset
---
<div>{{CSSRef}}</div>
<p><strong><code>border-image-outset</code></strong> <a href="/ko/docs/Web/CSS">CSS</a> 속성은 요소의 테두리 상자와 <a href="/ko/docs/Web/CSS/border-image">테두리 이미지</a>의 거리를 설정합니다.</p>
<p><code>border-image-outset</code>으로 인해 요소 바깥에 그려지는 테두리로는 스크롤이 생기지 않으며 마우스 이벤트를 잡아낼 수도 없습니다.</p>
<div>{{EmbedInteractiveExample("pages/css/border-image-outset.html")}}</div>
<h2 id="구문">구문</h2>
<pre class="brush:css no-line-numbers">/* <length> 값 */
border-image-outset: 1rem;
/* <number> 값 */
border-image-outset: 1.5;
/* 세로방향 | 가로방향 */
border-image-outset: 1 1.2;
/* 위 | 가로방향 | 아래 */
border-image-outset: 30px 2 45px;
/* 위 | 오른쪽 | 아래 | 왼쪽 */
border-image-outset: 7px 12px 14px 5px;
/* 전역 값 */
border-image-outset: inherit;
border-image-outset: initial;
border-image-outset: unset;
</pre>
<p><code>border-image-outset</code> 속성은 한 개, 두 개, 세 개, 혹은 네 개의 값으로 지정할 수 있습니다. 각 값은 {{cssxref("<length>")}}나 {{cssxref("<number>")}}입니다. 음수는 유효하지 않습니다.</p>
<ul>
<li><strong>한 개의 값</strong>은 모든 네 면의 거리를 설정합니다.</li>
<li><strong>두 개의 값</strong>을 지정하면 첫 번째는 <strong>위와 아래</strong>, 두 번째는 <strong>왼쪽과 오른쪽</strong> 거리를 설정합니다.</li>
<li><strong>세 개의 값</strong>을 지정하면 첫 번째는 <strong>위</strong>, 두 번째는 <strong>왼쪽과 오른쪽,</strong> 세 번째 값은 <strong>아래</strong> 거리를 설정합니다.</li>
<li><strong>네 개의 값</strong>을 지정하면 각각 <strong>상, 우, 하, 좌</strong> 순서로 거리를 지정합니다. (시계방향)</li>
</ul>
<h3 id="값">값</h3>
<dl>
<dt>{{cssxref("<length>")}}</dt>
<dd>테두리 거리의 크기로 고정값 사용.</dd>
<dt>{{cssxref("<number>")}}</dt>
<dd>테두리 거리의 크기로 {{cssxref("border-width")}}의 배수 사용.</dd>
</dl>
<h3 id="형식_구문">형식 구문</h3>
{{csssyntax}}
<h2 id="예제">예제</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><div id="outset">밖으로 나간 테두리를 가지고 있어요!</div>
</pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">#outset {
width: 10rem;
background: #cef;
border: 1.4rem solid;
border-image: radial-gradient(#ff2, #55f) 40;
border-image-outset: 1.5; /* = 1.5 * 1.4rem = 2.1rem */
margin: 2.1rem;
}</pre>
<h3 id="결과">결과</h3>
<p>{{EmbedLiveSample("예제", "auto", 200)}}</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 Backgrounds', '#the-border-image-outset', 'border-image-outset')}}</td>
<td>{{Spec2('CSS3 Backgrounds')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<div>{{cssinfo}}</div>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("css.properties.border-image-outset")}}</p>
|