empty-cells

empty-cells CSS 属性设置是否在没有可见内容的 <table> 单元格周围显示边框和背景。

试试看

此属性仅在 border-collapse 属性为 separate 时有效。

语法

css
/* Keyword values */
empty-cells: show;
empty-cells: hide;

/* Global values */
empty-cells: inherit;
empty-cells: initial;
empty-cells: revert;
empty-cells: revert-layer;
empty-cells: unset;

empty-cells 属性指定为以下列出的关键字值之一。

show

边框和背景与普通单元格一样绘制。

hide

不绘制边框或背景。

正式定义

初始值show
应用于table-cell 元素
继承
计算值按指定
动画类型离散

正式语法

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;
}

结果

规范

规范
层叠样式表级别 2 修订版 2 (CSS 2.2) 规范
# empty-cells

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅