empty-cells
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Thuộc tính empty-cells trong CSS xác định xem đường viền và nền có hiển thị xung quanh các ô <table> không có nội dung hiển thị hay không.
Thuộc tính này chỉ có hiệu lực khi thuộc tính border-collapse có giá trị là separate.
Try it
empty-cells: show;
empty-cells: hide;
<section class="default-example" id="default-example">
<table class="transition-all" id="example-element">
<tbody>
<tr>
<th>Client Name</th>
<th>Age</th>
</tr>
<tr>
<td></td>
<td>25</td>
</tr>
<tr>
<td>Louise Q.</td>
<td></td>
</tr>
<tr>
<td>Owen B.</td>
<td></td>
</tr>
<tr>
<td>Stan L.</td>
<td>71</td>
</tr>
</tbody>
</table>
</section>
th,
td {
border: 2px solid #aa1199;
padding: 0.25rem 0.5rem;
}
Cú pháp
css
/* Giá trị từ khóa */
empty-cells: show;
empty-cells: hide;
/* Giá trị toàn cục */
empty-cells: inherit;
empty-cells: initial;
empty-cells: revert;
empty-cells: revert-layer;
empty-cells: unset;
Thuộc tính empty-cells được chỉ định bằng một trong các giá trị từ khóa dưới đây.
Giá trị
Định nghĩa hình thức
| Initial value | show |
|---|---|
| Applies to | table-cell elements |
| Inherited | yes |
| Computed value | as specified |
| Animation type | discrete |
Cú pháp hình thức
empty-cells =
show |
hide
Ví dụ
>Hiển thị và ẩn các ô bảng trống
HTML
html
<table class="table_1">
<tbody>
<tr>
<td>Moe</td>
<td>Larry</td>
</tr>
<tr>
<td>Curly</td>
<td></td>
</tr>
</tbody>
</table>
<br />
<table class="table_2">
<tbody>
<tr>
<td>Moe</td>
<td>Larry</td>
</tr>
<tr>
<td>Curly</td>
<td></td>
</tr>
</tbody>
</table>
CSS
css
.table_1 {
empty-cells: show;
}
.table_2 {
empty-cells: hide;
}
td,
th {
border: 1px solid gray;
padding: 0.5rem;
}
Kết quả
Thông số kỹ thuật
| Specification |
|---|
| Cascading Style Sheets Level 2> # empty-cells> |