blob: dccbbbf9d13325b80b2710feace74420f187485f (
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
|
---
title: tab-size
slug: Web/CSS/tab-size
tags:
- CSS
- CSS Property
- CSS Text
- Reference
- 'recipe:css-property'
translation_of: Web/CSS/tab-size
---
<div>{{CSSRef}}</div>
<p><span class="seoSummary"><a href="/ko/docs/Web/CSS">CSS</a> <strong><code>tab-size</code></strong> 속성은 탭 문자(U+0009)의 너비를 조절합니다.</span></p>
<h2 id="구문">구문</h2>
<pre class="brush:css no-line-numbers notranslate">/* <integer> 값 */
tab-size: 4;
tab-size: 0;
/* <length> 값 */
tab-size: 10px;
tab-size: 2em;
/* 전역 값 */
tab-size: inherit;
tab-size: initial;
tab-size: unset;
</pre>
<h3 id="값">값</h3>
<dl>
<dt>{{CSSxRef("<integer>")}}</dt>
<dd>공백 문자(U+0020)에 대한 탭 문자의 상대적인 너비. 0 이상의 정수여야 합니다.</dd>
<dt>{{CSSxRef("<length>")}}</dt>
<dd>탭 문자의 너비. 양의 값이어야 합니다.</dd>
</dl>
<h2 id="형식_정의">형식 정의</h2>
<p>{{CSSInfo}}</p>
<h2 id="형식_구문">형식 구문</h2>
{{CSSSyntax}}
<h2 id="예제">예제</h2>
<h3 id="글자_수로_정의">글자 수로 정의</h3>
<pre class="brush: css notranslate">pre {
tab-size: 4; /* Set tab size to 4 characters wide */
}
</pre>
<h3 id="탭_제거">탭 제거</h3>
<pre class="brush: css notranslate">pre {
tab-size: 0; /* Remove indentation */
}
</pre>
<h3 id="기본_크기와_비교">기본 크기와 비교</h3>
<p>다음 예제는 기본 탭 크기를 사용자 지정 탭 크기와 비교합니다. {{cssxref("white-space")}} 속성을 <code>pre</code>로 설정해서 탭 문자가 접히지 않도록 했습니다.</p>
<h4 id="HTML">HTML</h4>
<pre class="brush: html notranslate"><p>no tab</p>
<p>&#0009;default tab size of 8 characters wide</p>
<p class="custom">&#0009;custom tab size of 3 characters wide</p>
<p>&nbsp;&nbsp;&nbsp;3 spaces, equivalent to the custom tab size</p>
</pre>
<h4 id="CSS">CSS</h4>
<pre class="brush: css notranslate">p {
white-space: pre;
}
.custom {
tab-size: 3;
-moz-tab-size: 3;
}</pre>
<h4 id="결과">결과</h4>
<p>{{EmbedLiveSample('기본_크기와_비교')}}</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 Text', '#tab-size-property', 'tab-size')}}</td>
<td>{{Spec2('CSS3 Text')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("css.properties.tab-size")}}</p>
<h2 id="같이_보기">같이 보기</h2>
<ul>
<li><a class="external" href="https://lists.w3.org/Archives/Public/www-style/2008Dec/0009.html"><cite>Controlling size of a tab character (U+0009)</cite></a>, Anne van Kesteren이 CSSWG에 보낸 이메일.</li>
</ul>
|