CSS empty-cells
Also see the full, alphabetical list of CSS properties
The CSS empty-cells property specifies whether to display or hide borders on empty table cells.
Empty table cells are cells that don't contain any visible content. Visible content includes " " and other whitespace except ASCII CR ("\0D"), LF ("\0A"), tab ("\09"), and space ("\20")
When the empty-cells property is set to 'show', borders are drawn around the empty cell. When set to 'hide', no borders are drawn around it.
| Syntax: | empty-cells: <value>; |
| Possible Values: |
|
| Initial Value: | Show |
| Applies to: | 'table-cell' elements |
| Inherited: | Yes |
| Media: | Visual |
| Example: |
table { empty-cells: show }
|
| Try it yourself! |
|
