blob: 038b642366c17ca07b8a709e68e10cb7ac5947b0 (
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
---
title: column-gap (grid-column-gap)
slug: Web/CSS/column-gap
tags:
- CSS
- CSS フレックスボックス
- CSS グリッドレイアウト
- CSS 段組みレイアウト
- CSS プロパティ
- リファレンス
- column-gap
- recipe:css-property
browser-compat: css.properties.column-gap
translation_of: Web/CSS/column-gap
---
{{CSSRef}}
**`column-gap`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素の段または列の間の隙間 ({{glossary("Gutters","溝")}}) の寸法を設定します。
{{EmbedInteractiveExample("pages/css/column-gap.html")}}
当初は[段組みレイアウト](/ja/docs/Web/CSS/CSS_Columns)の一部でしたが、`column-gap` の定義は複数のレイアウト方式を含めるように拡張されました。現在は[ボックス配置](/ja/docs/Web/CSS/CSS_Box_Alignment)の中で定義され、段組みレイアウト、フレキシブルボックス、グリッドレイアウトで使用されることがあります。
## 構文
```css
/* キーワード値 */
column-gap: normal;
/* <length> 値 */
column-gap: 3px;
column-gap: 2.5em;
/* <percentage> 値 */
column-gap: 3%;
/* グローバル値 */
column-gap: inherit;
column-gap: initial;
column-gap: revert;
column-gap: unset;
```
`column-gap` プロパティは以下に挙げた値の一つで指定します。
### 値
- `normal`
- : 列間 (段間) にはブラウザー既定の幅が使われます。段組みレイアウトでは `1em` と指定され、他の種類のレイアウトでは 0 になります。
- {{CSSxRef("<length>")}}
- : 列間 (段間) の寸法を {{CSSxRef("<length>")}} として定義します。 {{CSSxRef("<length>")}} のプロパティ値は負の数であってはいけません。
- {{CSSxRef("<percentage>")}}
- : 列間 (段間) の寸法を {{CSSxRef("<percentage>")}} として定義します。 {{CSSxRef("<percentage>")}} のプロパティ値は負の数であってはいけません。
## 公式定義
{{cssinfo}}
## 関連情報
{{csssyntax}}
## 例
<h3 id="Flex_layout">フレックスレイアウト</h3>
#### HTML
```html
<div id="flexbox">
<div></div>
<div></div>
<div></div>
</div>
```
#### CSS
```css
#flexbox {
display: flex;
height: 100px;
column-gap: 20px;
}
#flexbox > div {
border: 1px solid green;
background-color: lime;
flex: auto;
}
```
#### 結果
{{EmbedLiveSample("Flex_layout", "auto", "120px")}}
<h3 id="Grid_layout">グリッドレイアウト</h3>
#### HTML
```html
<div id="grid">
<div></div>
<div></div>
<div></div>
</div>
```
#### CSS
```css
#grid {
display: grid;
height: 100px;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 100px;
column-gap: 20px;
}
#grid > div {
border: 1px solid green;
background-color: lime;
}
```
#### 結果
{{EmbedLiveSample("Grid_layout", "auto", "120px")}}
<h3 id="Multi-column_layout">段組みレイアウト</h3>
#### HTML
```html
<p class="content-box">
This is some multi-column text with a 40px column
gap created with the CSS `column-gap` property.
Don't you think that's fun and exciting? I sure do!
</p>
```
#### CSS
```css
.content-box {
column-count: 3;
column-gap: 40px;
}
```
#### 結果
{{EmbedLiveSample("Multi-column_layout", "auto", "120px")}}
## 仕様書
{{Specifications("css.properties.column-gap.grid_context")}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- 関連する CSS プロパティ: {{CSSxRef("row-gap")}}, {{CSSxRef("gap")}}
- グリッドレイアウトのガイド: _[グリッドレイアウトの基本概念 - 溝](/ja/docs/Web/CSS/CSS_Grid_Layout/Basic_Concepts_of_Grid_Layout#gutters)_
- 段組みレイアウトのガイド: _[段組みのスタイル付け](/ja/docs/Web/CSS/CSS_Columns/Styling_Columns)_
|