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

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

<p>Die <code>column-rule-color</code> CSS Eigenschaft definiert die Farbe 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-color")}}
</pre>

<pre>column-rule-color: red
column-rule-color: rgb(192, 56, 78)
column-rule-color: transparent
column-rule-color: hsla(0, 100%, 50%, 0.6)

column-rule-color: inherit
</pre>

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

<dl>
 <dt>&lt;color&gt;</dt>
 <dd>Ist ein {{cssxref("&lt;color&gt;")}} Wert, der die Farbe der Linie angibt, die die Spalten trennt.</dd>
</dl>

<h2 id="Beispiel">Beispiel</h2>

<pre class="brush:css">#header { column-rule-color: blue; }
</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', '#crc', 'column-rule-color')}}</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-color")}}