From 4b1a9203c547c019fc5398082ae19a3f3d4c3efe Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:41:15 -0500 Subject: initial commit --- files/de/web/css/tab-size/index.html | 94 ++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 files/de/web/css/tab-size/index.html (limited to 'files/de/web/css/tab-size') diff --git a/files/de/web/css/tab-size/index.html b/files/de/web/css/tab-size/index.html new file mode 100644 index 0000000000..b324828746 --- /dev/null +++ b/files/de/web/css/tab-size/index.html @@ -0,0 +1,94 @@ +--- +title: tab-size +slug: Web/CSS/tab-size +tags: + - CSS + - CSS Eigenschaft + - Experimentell + - Referenz +translation_of: Web/CSS/tab-size +--- +

{{ CSSRef() }}

+ +

{{ SeeCompatTable() }}

+ +

Übersicht

+ +

Die tab-size CSS Eigenschaft wird verwendet, um die Breite eines Tabulatorzeichens (U+0009) anzupassen.

+ +

{{cssinfo}}

+ +

Syntax

+ +
/* <integer> Werte */
+tab-size: 4;
+tab-size: 0;
+
+/* <length> Werte */
+tab-size: 10px;
+tab-size: 2em;
+
+/* Globale Werte */
+tab-size: inherit;
+tab-size: initial;
+tab-size: unset;
+
+ +

Werte

+ +
+
{{cssxref("<integer>")}}
+
Die Anzahl der Leerzeichen in einem Tabulator. Darf nicht negativ sein.
+
{{cssxref("<length>")}}
+
Die Breite eines Tabulators. Darf nicht negativ sein.
+
+ +

Formale Syntax

+ +
{{csssyntax}}
+ +

Beispiele

+ +
pre {
+  tab-size: 4; /* Setzt die Tabgröße auf 4 Leerzeichen */
+}
+
+ +
pre {
+  tab-size: 0; /* Entfernt die Einrückung */
+}
+
+ +
pre {
+  tab-size: 99; /* Verwende keine Tabs! */
+}
+
+ +

Spezifikationen

+ + + + + + + + + + + + + + + + +
SpezifikationStatusKommentar
{{SpecName('CSS3 Text', '#tab-size', 'tab-size')}}{{Spec2('CSS3 Text')}}Ursprüngliche Definition
+ +

Browser Kompatibilität

+ +

{{Compat("css.properties.tab-size")}}

+ +

Siehe auch

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