aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/column-rule-style/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/web/css/column-rule-style/index.html')
-rw-r--r--files/de/web/css/column-rule-style/index.html72
1 files changed, 72 insertions, 0 deletions
diff --git a/files/de/web/css/column-rule-style/index.html b/files/de/web/css/column-rule-style/index.html
new file mode 100644
index 0000000000..612ec4008b
--- /dev/null
+++ b/files/de/web/css/column-rule-style/index.html
@@ -0,0 +1,72 @@
+---
+title: column-rule-style
+slug: Web/CSS/column-rule-style
+tags:
+ - CSS
+ - CSS Eigenschaft
+ - CSS Mehrspaltiges Layout
+ - Layout
+ - Referenz
+ - Web
+translation_of: Web/CSS/column-rule-style
+---
+<p>{{ CSSRef("CSS Multi-columns") }}</p>
+
+<h2 id="Übersicht">Übersicht</h2>
+
+<p>Die <code>column-rule-style</code> CSS Eigenschaft definiert den Stil der Linie, die zwischen den Spalten in mehrspaltigen Layouts gezeichnet wird.</p>
+
+<p>{{cssinfo}}</p>
+
+<h2 id="Syntax">Syntax</h2>
+
+<pre class="twopartsyntaxbox"><a href="/de/docs/Web/CSS/Wertdefinitionssyntax" title="CSS/Value_definition_syntax">Formale Syntax</a>: {{csssyntax("column-rule-style")}}
+</pre>
+
+<pre>column-rule-style: none
+column-rule-style: hidden
+column-rule-style: dotted
+column-rule-style: dashed
+column-rule-style: solid
+column-rule-style: double
+column-rule-style: groove
+column-rule-style: ridge
+column-rule-style: inset
+column-rule-style: outset
+
+column-rule-style: inherit
+</pre>
+
+<h3 id="Werte">Werte</h3>
+
+<dl>
+ <dt>&lt;br-style&gt; </dt>
+ <dd>Ist ein Schlüsselwort, das durch {{ cssxref("border-style") }} definiert wird und der den Stil der Linie angibt, die die Spalten trennt. Die Gestaltung muss wie im zusammenfallenden Border Model interpretiert werden.</dd>
+</dl>
+
+<h2 id="Beispiel">Beispiel</h2>
+
+<pre class="brush: css">#header {-moz-column-rule-style: inset;}</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', '#crs', 'column-rule-style') }}</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-style")}}