aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/column-rule-width/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/web/css/column-rule-width/index.html')
-rw-r--r--files/de/web/css/column-rule-width/index.html78
1 files changed, 78 insertions, 0 deletions
diff --git a/files/de/web/css/column-rule-width/index.html b/files/de/web/css/column-rule-width/index.html
new file mode 100644
index 0000000000..b087970e95
--- /dev/null
+++ b/files/de/web/css/column-rule-width/index.html
@@ -0,0 +1,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>&lt;'border-width'&gt; </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>