--- title: tab-size slug: Web/CSS/tab-size tags: - CSS - CSS Property - CSS テキスト - CSS プロパティ - Experimental - Reference translation_of: Web/CSS/tab-size ---
{{CSSRef}}{{SeeCompatTable}}

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}}

構文

{{CSSxRef("<integer>")}}
タブの空白文字の文字数です。正の数でなければなりません。
{{CSSxRef("<length>")}}
タブの幅です。正の数でなければなりません。

形式文法

{{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")}}

関連情報