blob: 67e4ed0854849299ba9eeb5d7a3b3d8281dac47c (
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
|
---
title: empty-cells
slug: Web/CSS/empty-cells
tags:
- CSS
- CSS プロパティ
- CSS 表
- リファレンス
- recipe:css-property
browser-compat: css.properties.empty-cells
translation_of: Web/CSS/empty-cells
---
{{CSSRef}}
**`empty-cells`** は CSS のプロパティで、{{htmlelement("table", "表")}}のセルが目に見える内容を持たない場合に、周囲の境界と背景を{{glossary("user agent", "ユーザーエージェント")}}がどのように描画するかを指定します。
{{EmbedInteractiveExample("pages/css/empty-cells.html")}}
このプロパティは、 {{cssxref("border-collapse")}} プロパティが `separate` であった場合のみ効果があります。
## 構文
```css
/* キーワード値 */
empty-cells: show;
empty-cells: hide;
/* グローバル値 */
empty-cells: inherit;
empty-cells: initial;
empty-cells: unset;
```
`empty-cells` プロパティは、以下のキーワード値のうちの一つで指定します。
### 値
- `show`
- : 通常のセルのように、境界や背景を描くことを示すキーワードです。
- `hide`
- : 境界や背景を描かないことを示すキーワードです。
## 公式定義
{{cssinfo}}
## 形式文法
{{csssyntax}}
## 例
<h3 id="Showing_and_hiding_empty_table_cells">表の空のセルの表示・非表示</h3>
#### HTML
```html
<table class="table_1">
<tr>
<td>Moe</td>
<td>Larry</td>
</tr>
<tr>
<td>Curly</td>
<td></td>
</tr>
</table>
<br>
<table class="table_2">
<tr>
<td>Moe</td>
<td>Larry</td>
</tr>
<tr>
<td>Curly</td>
<td></td>
</tr>
</table>
```
#### CSS
```css
.table_1 {
empty-cells: show;
}
.table_2 {
empty-cells: hide;
}
td,
th {
border: 1px solid gray;
padding: 0.5rem;
}
```
#### 結果
{{ EmbedLiveSample('Showing_and_hiding_empty_table_cells', '100%', '200') }}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- {{cssxref("border-collapse")}}
- [表のスタイル付け](/ja/docs/Learn/CSS/Building_blocks/Styling_tables)
|