aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/column-rule-width/index.html
blob: c0241e7a312fb47ba9651766e0f76fe7c1f42e13 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
title: column-rule-width
slug: Web/CSS/column-rule-width
tags:
  - CSS
  - CSS Property
  - CSS プロパティ
  - CSS 段組みレイアウト
  - Reference
  - 段組み
translation_of: Web/CSS/column-rule-width
---
<div>{{ CSSRef}}</div>

<p><strong><code>column-rule-width</code></strong><a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、段組みレイアウトで段間に引かれる線の太さを設定します。</p>

<div>{{EmbedInteractiveExample("pages/css/column-rule-width.html")}}</div>

<p class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</p>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="brush:css no-line-numbers">/* キーワード値 */
column-rule-width: thin;
column-rule-width: medium;
column-rule-width: thick;

/* &lt;length&gt; 値 */
column-rule-width: 1px;
column-rule-width: 2.5em;

/* グローバル値 */
column-rule-width: inherit;
column-rule-width: initial;
column-rule-width: unset;
</pre>

<p><code>column-rule-width</code> プロパティは単一の <code>&lt;'border-width'&gt;</code> の値で指定します。</p>

<h3 id="Values" name="Values"></h3>

<dl>
 <dt><code>&lt;'border-width'&gt;</code></dt>
 <dd>{{ cssxref("border-width") }} で定められたキーワードで段間罫の太さを指定します。 {{cssxref("&lt;length&gt;")}} または <code>thin</code><code>medium</code><code>thick</code> のキーワードのいずれかです。</dd>
</dl>

<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3>

{{csssyntax}}

<h2 id="Example" name="Example"></h2>

<h3 id="HTML">HTML</h3>

<pre class="brush: html">&lt;p&gt;This is a bunch of text split into three columns.
   The `column-rule-width` property is used to change
   the width of the line that is drawn between columns.
   Don't you think that's wonderful?&lt;/p&gt;</pre>

<h3 id="CSS">CSS</h3>

<pre class="brush:css">p {
  column-count: 3;
  column-rule-style: solid;
  column-rule-width: thick;
}
</pre>

<h3 id="Result" name="Result">結果</h3>

<p>{{EmbedLiveSample("Example")}}</p>

<h2 id="Specifications" name="Specifications">仕様書</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">状態</th>
   <th scope="col">備考</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{ SpecName('CSS3 Multicol', '#crw', 'column-rule-width') }}</td>
   <td>{{ Spec2('CSS3 Multicol') }}</td>
   <td>初回定義</td>
  </tr>
 </tbody>
</table>

<p>{{cssinfo}}</p>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>

<p>{{Compat("css.properties.column-rule-width")}}</p>