blob: c441af6d43cde58d05e6b22d0ff67a6b7faf336a (
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
|
---
title: column-span
slug: Web/CSS/column-span
tags:
- CSS
- CSS Eigenschaft
- CSS Mehrspalten
- Referenz
translation_of: Web/CSS/column-span
---
<div>{{CSSRef("CSS Multi-columns")}}</div>
<h2 id="Summary" name="Summary">Übersicht</h2>
<p>Die <a href="/en-US/docs/CSS" title="/en-US/docs/CSS">CSS</a> Eigenschaft <code>column-span</code> bestimmt die Laufweite eines Elements inerhalb eines Mehrspaltigen Containers.</p>
<p>{{cssinfo}}</p>
<h2 id="Syntax" name="Syntax">Syntax</h2>
<pre class="twopartsyntaxbox">{{csssyntax}}
</pre>
<pre>column-span: none
column-span: all
column-span: inherit
</pre>
<h3 id="Werte">Werte</h3>
<dl>
<dt><code>none</code></dt>
<dd>Das Element fliesst nicht über mehrere Spalten hinweg.</dd>
<dt><code>all</code></dt>
<dd>Das Element fliesst über sämtliche Spalten hinweg. Der Inhalt davor wird automatisch zwischen den Spalten ausgeglichen.</dd>
</dl>
<h2 id="Examples" name="Examples">Beispiele</h2>
<pre class="brush:css">h1, h2 {
column-span: all;
}
</pre>
<h2 id="Specifications" name="Specifications">Spezifikation</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spezifikation</th>
<th scope="col">Status</th>
<th scope="col">Anmerkung</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ SpecName('CSS3 Multicol', '#column-span0', 'column-width') }}</td>
<td>{{ Spec2('CSS3 Multicol') }}</td>
<td>Ursprüngliche Definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">Browser Kompatibilität</h2>
{{Compat("css.properties.column-span")}}
|