--- title: tab-size slug: Web/CSS/tab-size tags: - CSS - CSS Property - CSS テキスト - CSS プロパティ - Experimental - Reference translation_of: Web/CSS/tab-size ---
CSS の tab-size プロパティは、タブ文字 (U+0009) の表示幅の指定に用います。
/* <integer> 値 */ tab-size: 4; tab-size: 0; /* <length> 値 */ tab-size: 10px; tab-size: 2em; /* グローバル値 */ tab-size: inherit; tab-size: initial; tab-size: unset;
{{CSSInfo}}
{{csssyntax}}
pre {
tab-size: 4; /* スペース 4 つ分となります */
}
pre {
tab-size: 0; /* インデント除去 */
}
pre {
tab-size: 2; /* タブの幅をスペース 2 個分に設定 */
}
| 仕様書 | 状態 | 備考 |
|---|---|---|
| {{SpecName('CSS3 Text', '#tab-size-property', 'tab-size')}} | {{Spec2('CSS3 Text')}} | 初回定義 |
{{Compat("css.properties.tab-size")}}