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
124
125
126
127
128
|
---
title: border-image-width
slug: Web/CSS/border-image-width
tags:
- CSS
- CSS Borders
- CSS Property
- Reference
translation_of: Web/CSS/border-image-width
---
<div>{{CSSRef}}</div>
<p><strong><code>border-image-width</code></strong> <a href="/ko/docs/Web/CSS">CSS</a> 속성은 요소 <a href="/ko/docs/Web/CSS/border-image">테두리 이미지</a>의 너비를 설정합니다.</p>
<div>{{EmbedInteractiveExample("pages/css/border-image-width.html")}}</div>
<p>속성의 값이 {{cssxref("border-width")}}보다 크다면 테두리 이미지는 안쪽 여백(과 콘텐츠) 영역을 침범하여 그려집니다.</p>
<h2 id="구문">구문</h2>
<pre class="brush:css no-line-numbers">/* 키워드 값 */
border-image-width: auto;
/* <length> 값 */
border-image-width: 1rem;
/* <percentage> 값 */
border-image-width: 25%;
/* <number> 값 */
border-image-width: 3;
/* 세로방향 | 가로방향 */
border-image-width: 2em 3em;
/* 위 | 가로방향 | 아래 */
border-image-width: 5% 15% 10%;
/* 위 | 오른쪽 | 아래 | 왼쪽 */
border-image-width: 5% 2em 10% auto;
/* 전역 값 */
border-image-width: inherit;
border-image-width: initial;
border-image-width: unset;
</pre>
<p><code>border-image-width</code> 속성은 한 개, 두 개, 세 개, 혹은 네 개의 값으로 지정할 수 있습니다. 음수는 유효하지 않습니다.</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><code><length-percentage></code></dt>
<dd>{{cssxref("<length>")}} 또는 {{cssxref("<percentage>")}}로 지정한 테두리 너비. 백분율 값은 왼쪽과 오른쪽 테두리에 대해선 테두리 이미지 영역의 너비, 위쪽과 아래쪽에 대해선 테두리 이미지 영역의 높이를 사용해 계산합니다.</dd>
<dt><code><number></code></dt>
<dd>테두리 너비로 {{cssxref("border-width")}}의 배수 사용</dd>
<dt><code>auto</code></dt>
<dd>방향과 일치하는 {{cssxref("border-image-slice")}}가 가진 원래 너비 또는 높이 사용. 이미지가 원래 크기를 가지고 있지 않으면 방향과 일치하는 <code>border-width</code> 크기를 사용합니다.</dd>
</dl>
<h3 id="형식_구문">형식 구문</h3>
{{csssyntax}}
<h2 id="예제">예제</h2>
<p>다음 예제는 아래의 가로 90픽셀, 세로 90픽셀 이미지를 사용해 테두리 이미지를 생성합니다.</p>
<p><img alt="" src="https://mdn.mozillademos.org/files/10470/border.png"></p>
<p>원본 이미지의 각 원은 가로 30픽셀, 세로 30픽셀입니다.</p>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><p>밤을 쉬이 봄이 무성할 릴케 듯합니다. 토끼, 써 이런 하나에 듯합니다. 이네들은 나는 패, 듯합니다.
나는 보고, 딴은 토끼, 이런 멀리 듯합니다. 청춘이 가을로 둘 버리었습니다. 걱정도 밤이 나는 애기
오는 언덕 경, 계십니다. 멀리 까닭이요, 나는 별빛이 듯합니다. 소녀들의 벌레는 걱정도 까닭이요,
북간도에 쓸쓸함과 오면 것은 어머님, 까닭입니다.</p>
</pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">p {
border: 20px solid;
border-image: url("https://mdn.mozillademos.org/files/10470/border.png") 30 round;
border-image-width: 16px;
padding: 40px;
}</pre>
<h3 id="결과">결과</h3>
<p>{{EmbedLiveSample('예제', 200, 240)}}</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-width', 'border-image-width')}}</td>
<td>{{Spec2('CSS3 Backgrounds')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<p>{{cssinfo}}</p>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("css.properties.border-image-width")}}</p>
|