From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/css/tab-size/index.html | 96 ++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 files/ja/web/css/tab-size/index.html (limited to 'files/ja/web/css/tab-size') diff --git a/files/ja/web/css/tab-size/index.html b/files/ja/web/css/tab-size/index.html new file mode 100644 index 0000000000..8f510eb9de --- /dev/null +++ b/files/ja/web/css/tab-size/index.html @@ -0,0 +1,96 @@ +--- +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")}}

+ +

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf