aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/column-gap/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/web/css/column-gap/index.html')
-rw-r--r--files/de/web/css/column-gap/index.html94
1 files changed, 94 insertions, 0 deletions
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
+---
+<div>{{CSSRef}}</div>
+
+<h2 id="Übersicht">Übersicht</h2>
+
+<p>Die CSS Eigenschaft <code>column-gap</code> bestimmt die Größe der Lücke zwischen den Spalten für Elemente, die als mehrspaltige Elemente dargestellt werden.</p>
+
+<p>{{cssinfo}}</p>
+
+<h2 id="Syntax">Syntax</h2>
+
+<pre class="brush:css">/* Schlüsselwortwert */
+column-gap: normal;
+
+/* &lt;length&gt; Werte */
+column-gap: 3px;
+column-gap: 2.5em;
+
+/* Globale Werte */
+column-gap: inherit;
+column-gap: initial;
+column-gap: unset;
+</pre>
+
+<h3 id="Werte">Werte</h3>
+
+<dl>
+ <dt><code>normal</code></dt>
+ <dd>Übernimmt den vom Browser vordefinierten Wert. Laut Spezifikation sollte dieser Wert <code>1em</code> entsprechen.</dd>
+ <dt><code>&lt;length&gt;</code></dt>
+ <dd>Ein {{cssxref("&lt;length&gt;")}} Wert, welcher den Abstand der Lücke festlegt. Der Wert darf nicht negativ sein, <code>0</code> ist jedoch zulässig.</dd>
+</dl>
+
+<h3 id="Formale_Syntax">Formale Syntax</h3>
+
+<pre class="syntaxbox">{{csssyntax}}</pre>
+
+<h2 id="Beispiel">Beispiel</h2>
+
+<pre class="brush:css; highlight:[4]">.content-box {
+ border: 10px solid #000000;
+ column-count: 3;
+ column-gap: 20px;
+}
+</pre>
+
+<h2 id="Spezifikationen">Spezifikationen</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Spezifikation</th>
+ <th scope="col">Status</th>
+ <th scope="col">Kommentar</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('CSS3 Multicol', '#column-gap', 'column-gap')}}</td>
+ <td>{{Spec2('CSS3 Multicol')}}</td>
+ <td>Ursprüngliche Definition</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
+
+<h3 id="Support_im_Flex_Layout">Support im Flex Layout</h3>
+
+<p>{{Compat("css.properties.column-gap.flex_context")}}</p>
+
+<h3 id="Support_im_Grid_Layout">Support im Grid Layout</h3>
+
+<p>{{Compat("css.properties.column-gap.grid_context")}}</p>
+
+<h3 id="Support_im_Multi-column_Layout">Support im Multi-column Layout</h3>
+
+<p>{{Compat("css.properties.column-gap.multicol_context")}}</p>
+
+<h2 id="Siehe_auch">Siehe auch</h2>
+
+<ul>
+ <li><a href="/de/docs/Web/CSS/CSS_Referenz">CSS Referenz</a></li>
+</ul>