aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/column-rule/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/web/css/column-rule/index.html')
-rw-r--r--files/de/web/css/column-rule/index.html74
1 files changed, 74 insertions, 0 deletions
diff --git a/files/de/web/css/column-rule/index.html b/files/de/web/css/column-rule/index.html
new file mode 100644
index 0000000000..5df71109ef
--- /dev/null
+++ b/files/de/web/css/column-rule/index.html
@@ -0,0 +1,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")}}