aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/column-rule-style/index.html
blob: 612ec4008bcc94db0c6835046a7b86e563459059 (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
68
69
70
71
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")}}