blob: 9e41194a525213632fde6075c30a4a6129410330 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
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;
/* <length> 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><length></code></dt>
<dd>Ein {{cssxref("<length>")}} 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>
|