blob: 107415aa37cd1c5ac2f7253c16455243a2139c07 (
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
|
---
title: column-rule-width
slug: Web/CSS/column-rule-width
tags:
- CSS
- CSS 段組みレイアウト
- CSS プロパティ
- リファレンス
- recipe:css-property
browser-compat: css.properties.column-rule-width
translation_of: Web/CSS/column-rule-width
---
{{ CSSRef}}
**`column-rule-width`** は [CSS](/ja/docs/Web/CSS) のプロパティで、段組みレイアウトで段間に引かれる線(段間罫)の太さを設定します。
{{EmbedInteractiveExample("pages/css/column-rule-width.html")}}
## 構文
```css
/* キーワード値 */
column-rule-width: thin;
column-rule-width: medium;
column-rule-width: thick;
/* <length> 値 */
column-rule-width: 1px;
column-rule-width: 2.5em;
/* グローバル値 */
column-rule-width: inherit;
column-rule-width: initial;
column-rule-width: revert;
column-rule-width: unset;
```
`column-rule-width` プロパティは単一の `<'border-width'>` の値で指定します。
### 値
- `<'border-width'>`
- : {{ cssxref("border-width") }} で定められたキーワードで段間罫の太さを指定します。 {{cssxref("<length>")}} または `thin`、 `medium`、 `thick` のキーワードのいずれかです。
## 公式定義
{{cssinfo}}
## 形式文法
{{csssyntax}}
## 例
### 太い段間罫を設定
#### HTML
```html
<p>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?</p>
```
#### CSS
```css
p {
column-count: 3;
column-rule-style: solid;
column-rule-width: thick;
}
```
#### 結果
{{EmbedLiveSample("Setting_a_thick_column_rule")}}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- [段組みレイアウト](/ja/docs/Learn/CSS/CSS_layout/Multiple-column_Layout)
- {{CSSXref("column-rule-style")}}
- {{CSSXref("column-rule-color")}}
- {{CSSXref("column-rule")}}
|