empty-cells CSS property sets whether borders and backgrounds appear around <table> cells that have no visible content.

The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.

This property has an effect only when the border-collapse 特性为 separate .

句法

/* Keyword values */
empty-cells: show;
empty-cells: hide;
/* Global values */
empty-cells: inherit;
empty-cells: initial;
empty-cells: unset;
					

empty-cells property is specified as one of the keyword values listed below.

show

Borders and backgrounds are drawn like in normal cells.

hide

No borders or backgrounds are drawn.

形式定义

初始值 show
适用于 table-cell elements
继承 yes
计算值 如指定
动画类型 discrete

形式句法

show | hide
					

范例

Showing and hiding empty table cells

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

.table_1 {
  empty-cells: show;
}
.table_2 {
  empty-cells: hide;
}
td,
th {
  border: 1px solid gray;
  padding: 0.5rem;
}
					

结果

规范

规范 状态 注释
CSS Level 2 (Revision 1)
The definition of 'empty-cells' in that specification.
推荐 初始定义。

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
empty-cells Chrome 完整支持 1 Edge 完整支持 12 Firefox 完整支持 1 IE 完整支持 8 Opera 完整支持 4 Safari 完整支持 1.2 WebView Android 完整支持 1 Chrome Android 完整支持 18 Firefox Android 完整支持 4 Opera Android 完整支持 10.1 Safari iOS 完整支持 3.1 Samsung Internet Android 完整支持 1.0

图例

完整支持

完整支持

元数据

  • 最后修改: