empty-cells
empty-cells
は CSS のプロパティで、表のセルが目に見える内容を持たない場合に、周囲の境界と背景をユーザーエージェントがどのように描画するかを指定します。
試してみましょう
このプロパティは、 border-collapse
プロパティが separate
であった場合のみ効果があります。
構文
css
/* キーワード値 */
empty-cells: show;
empty-cells: hide;
/* グローバル値 */
empty-cells: inherit;
empty-cells: initial;
empty-cells: unset;
empty-cells
プロパティは、以下のキーワード値のうちの一つで指定します。
値
公式定義
初期値 | show |
---|---|
適用対象 | 表のセル要素 |
継承 | あり |
計算値 | 指定通り |
アニメーションの種類 | 離散値 |
形式文法
empty-cells =
show |
hide
例
表の空のセルの表示・非表示
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;
}
結果
仕様書
Specification |
---|
Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification # empty-cells |
ブラウザーの互換性
BCD tables only load in the browser