CSS empty-cells property
Usage
Used with the border-collapse: separate, it determines whether empty table cells are displayed with borders or not.
Values
- hide - default; empty cells will not be displayed
- show - empty cells will be displayed
Example
Code:
table {
border-collapse: separate;
empty-cells: show;
}