From 4b1a9203c547c019fc5398082ae19a3f3d4c3efe Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:41:15 -0500 Subject: initial commit --- files/de/web/css/column-rule-width/index.html | 78 +++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 files/de/web/css/column-rule-width/index.html (limited to 'files/de/web/css/column-rule-width/index.html') 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 +--- +

{{ CSSRef}}

+ +

Übersicht

+ +

Die column-rule-width CSS Eigenschaft definiert die Breite der Linie, die zwischen den Spalten in mehrspaltigen Layouts gezeichnet wird.

+ +

{{cssinfo('column-rule-width')}}

+ +

Syntax

+ +
/* 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;
+
+ +

Werte

+ +
+
<'border-width'> 
+
Ist ein {{cssxref("border-width")}} Wert oder eines der Schlüsselwörter thin, medium oder thick, und beschreibt die Breite der Linie, die zwei Spalten trennt.
+
+ +

Formale Syntax

+ +
{{csssyntax('column-rule-width')}}
+ +

Beispiel

+ +
#header {
+  column-rule-width: thick;
+}
+
+ +

Spezifikation

+ + + + + + + + + + + + + + + + +
SpezifikationStatusKommentar
{{ SpecName('CSS3 Multicol', '#crw', 'column-rule-width') }}{{ Spec2('CSS3 Multicol') }}Ursprüngliche Definition
+ +

Browser Kompatibilität

+ +

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

-- cgit v1.2.3-54-g00ecf