blob: ca89ae5ed3381f9f7df90cf1a6ca77b030d7e355 (
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
|
---
title: tab-size
slug: Web/CSS/tab-size
tags:
- CSS
- CSS Property
- CSS テキスト
- CSS プロパティ
- Experimental
- Reference
translation_of: Web/CSS/tab-size
---
<div>{{CSSRef}}{{SeeCompatTable}}</div>
<p>CSS の <strong><code>tab-size</code></strong> プロパティは、タブ文字 (<code>U+0009</code>) の表示幅の指定に用います。</p>
<pre class="brush:css">/* <integer> 値 */
tab-size: 4;
tab-size: 0;
/* <length> 値 */
tab-size: 10px;
tab-size: 2em;
/* グローバル値 */
tab-size: inherit;
tab-size: initial;
tab-size: unset;
</pre>
<p>{{CSSInfo}}</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<h3 id="Values" name="Values">値</h3>
<dl>
<dt>{{CSSxRef("<integer>")}}</dt>
<dd>タブの空白文字の文字数です。正の数でなければなりません。</dd>
<dt>{{CSSxRef("<length>")}}</dt>
<dd>タブの幅です。正の数でなければなりません。</dd>
</dl>
<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3>
{{csssyntax}}
<h2 id="Examples" name="Examples">例</h2>
<pre class="brush: css">pre {
tab-size: 4; /* スペース 4 つ分となります */
}
</pre>
<pre class="brush: css">pre {
tab-size: 0; /* インデント除去 */
}
</pre>
<pre class="brush: css">pre {
tab-size: 2; /* タブの幅をスペース 2 個分に設定 */
}
</pre>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Text', '#tab-size-property', 'tab-size')}}</td>
<td>{{Spec2('CSS3 Text')}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<p>{{Compat("css.properties.tab-size")}}</p>
<p> </p>
<h2 id="See_also" name="See_also">関連情報</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 氏 (Opera) からの CSSWG へのメール</li>
</ul>
|