aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/column-rule/index.html
blob: 5df71109ef216237d4157cab4d6558d48498f8d6 (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
---
title: column-rule
slug: Web/CSS/column-rule
tags:
  - CSS
  - CSS Eigenschaft
  - CSS Mehrspaltenlayout
  - Layout
  - Referenz
  - Web
translation_of: Web/CSS/column-rule
---
<div>{{CSSRef("CSS Multi-columns")}}</div>

<h2 id="Übersicht">Übersicht</h2>

<p>In mehrspaltigen Layouts beschreibt die <code>column-rule</code> CSS Eigenschaft eine gerade Linie, welche zwischen jeder Spalte dargestellt wird. Sie ist eine komfortable Kurzform, um das separate Setzen der einzelnen <code>column-rule-*</code> Eigenschaften zu vermeiden: {{Cssxref("column-rule-width")}}, {{Cssxref("column-rule-style")}} und {{Cssxref("column-rule-color")}}.</p>

<p>{{cssinfo}}</p>

<h2 id="Syntax">Syntax</h2>

<pre class="syntaxbox"><a href="/de/docs/Web/CSS/Wertdefinitionssyntax" title="CSS/Value_definition_syntax">Formale Syntax</a>: {{csssyntax("column-rule")}}
</pre>

<h3 id="Werte">Werte</h3>

<p>Akzeptiert einen, zwei oder drei Werte in beliebiger Reihenfolge:</p>

<dl>
 <dt><code>&lt;column-rule-width&gt;</code></dt>
 <dd>Ist eine {{cssxref("&lt;length&gt;")}} oder eins der drei Schlüsselwörter <code>thin</code>, <code>medium</code> oder <code>thick</code>. Siehe {{cssxref("border-width")}} für Details.</dd>
 <dt><code>&lt;column-rule-style&gt;</code></dt>
 <dd>Siehe {{cssxref("border-style")}} für mögliche Werte und Details.</dd>
 <dt><code>&lt;column-rule-color&gt;</code></dt>
 <dd>Ist ein {{cssxref("&lt;color&gt;")}} Wert.</dd>
</dl>

<h2 id="Beispiele">Beispiele</h2>

<pre>p.foo { column-rule: dotted; }          /* entspricht "medium dotted currentColor" */
p.bar { column-rule: solid blue; }      /* entspricht "medium solid blue" */
p.baz { column-rule: solid 8px; }       /* entspricht "8px solid currentColor" */
p.abc { column-rule: thick inset blue; }
</pre>

<h3 id="Live_Beispiel">Live Beispiel</h3>

<div style="padding: 0.3em; background: gold; border: groove 2px gold; -moz-column-rule: inset 2px gold; -moz-column-width: 17em; -webkit-columns: 17em; -webkit-column-rule: inset 2px gold; columns: 17em; column-rule: inset 2px gold;">
<p>padding:0.3em; background:gold; border:groove 2px gold; <strong>column-rule: inset 2px gold;</strong> <strong>column-width:17em;</strong></p>
</div>

<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', '#column-rule', 'column-rule')}}</td>
   <td>{{Spec2('CSS3 Multicol')}}</td>
   <td> </td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>

{{Compat("css.properties.column-rule")}}