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/column-gap/index.html | 94 ++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 files/de/web/css/column-gap/index.html (limited to 'files/de/web/css/column-gap/index.html') diff --git a/files/de/web/css/column-gap/index.html b/files/de/web/css/column-gap/index.html new file mode 100644 index 0000000000..9e41194a52 --- /dev/null +++ b/files/de/web/css/column-gap/index.html @@ -0,0 +1,94 @@ +--- +title: column-gap +slug: Web/CSS/column-gap +tags: + - CSS + - CSS Eigenschaft + - CSS Mehrspalten + - NeedsMobileBrowserCompatibility + - Referenz +translation_of: Web/CSS/column-gap +--- +
{{CSSRef}}
+ +

Übersicht

+ +

Die CSS Eigenschaft column-gap bestimmt die Größe der Lücke zwischen den Spalten für Elemente, die als mehrspaltige Elemente dargestellt werden.

+ +

{{cssinfo}}

+ +

Syntax

+ +
/* Schlüsselwortwert */
+column-gap: normal;
+
+/* <length> Werte */
+column-gap: 3px;
+column-gap: 2.5em;
+
+/* Globale Werte */
+column-gap: inherit;
+column-gap: initial;
+column-gap: unset;
+
+ +

Werte

+ +
+
normal
+
Übernimmt den vom Browser vordefinierten Wert. Laut Spezifikation sollte dieser Wert 1em entsprechen.
+
<length>
+
Ein {{cssxref("<length>")}} Wert, welcher den Abstand der Lücke festlegt. Der Wert darf nicht negativ sein, 0 ist jedoch zulässig.
+
+ +

Formale Syntax

+ +
{{csssyntax}}
+ +

Beispiel

+ +
.content-box {
+  border: 10px solid #000000;
+  column-count: 3;
+  column-gap: 20px;
+}
+
+ +

Spezifikationen

+ + + + + + + + + + + + + + + + +
SpezifikationStatusKommentar
{{SpecName('CSS3 Multicol', '#column-gap', 'column-gap')}}{{Spec2('CSS3 Multicol')}}Ursprüngliche Definition
+ +

Browser Kompatibilität

+ +

Support im Flex Layout

+ +

{{Compat("css.properties.column-gap.flex_context")}}

+ +

Support im Grid Layout

+ +

{{Compat("css.properties.column-gap.grid_context")}}

+ +

Support im Multi-column Layout

+ +

{{Compat("css.properties.column-gap.multicol_context")}}

+ +

Siehe auch

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