blob: b087970e9573969617db6a361c41851ad3a0a127 (
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
|
---
title: column-rule-width
slug: Web/CSS/column-rule-width
tags:
- CSS
- CSS Eigenschaft
- CSS Mehrspaltiges Layout
- Layout
- NeedsLiveSample
- NeedsMobileBrowserCompatibility
- Referenz
translation_of: Web/CSS/column-rule-width
---
<p>{{ CSSRef}}</p>
<h2 id="Übersicht">Übersicht</h2>
<p>Die <code>column-rule-width</code> CSS Eigenschaft definiert die Breite der Linie, die zwischen den Spalten in mehrspaltigen Layouts gezeichnet wird.</p>
<p>{{cssinfo('column-rule-width')}}</p>
<h2 id="Syntax" name="Syntax">Syntax</h2>
<pre class="brush:css">/* Schlüsselwortwerte */
column-rule-width: thin;
column-rule-width: medium;
column-rule-width: thick;
/* Längenwerte */
column-rule-width: 1px;
column-rule-width: 2.5em;
/* Globale Werte */
column-rule-width: inherit;
column-rule-width: initial;
column-rule-width: unset;
</pre>
<h3 id="Werte">Werte</h3>
<dl>
<dt><'border-width'> </dt>
<dd>Ist ein {{cssxref("border-width")}} Wert oder eines der Schlüsselwörter <code>thin</code>, <code>medium</code> oder <code>thick</code>, und beschreibt die Breite der Linie, die zwei Spalten trennt.</dd>
</dl>
<h3 id="Formale_Syntax">Formale Syntax</h3>
<pre class="syntaxbox">{{csssyntax('column-rule-width')}}</pre>
<h2 id="Beispiel">Beispiel</h2>
<pre class="brush: css">#header {
column-rule-width: thick;
}
</pre>
<h2 id="Spezifikation">Spezifikation</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', '#crw', 'column-rule-width') }}</td>
<td>{{ Spec2('CSS3 Multicol') }}</td>
<td>Ursprüngliche Definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
<p>{{Compat("css.properties.column-rule-width")}}</p>
|