Skip to content

Commit

Permalink
How to set background for empty table cell
Browse files Browse the repository at this point in the history
  • Loading branch information
nonunicorn committed Jan 11, 2022
1 parent 8a1dbde commit 36499dc
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions css/empty_table_column_color.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# How to set Background Empty column table
# How to set background for empty table cell

```css
table td:empty {
background:#eee;
table td:empty {
background: #eee;
}
```
```

- `td:empty` - this selector will only affect empty cells
- `background: #eee;` - set any background as well as any other css style


0 comments on commit 36499dc

Please sign in to comment.