2019-12-07
Select empty elements
It's possible to select elements or divs that does not contain anything.
Solution
div:not(:empty) {
outline: 2px solid blue;
}
It's possible to select elements or divs that does not contain anything.
div:not(:empty) {
outline: 2px solid blue;
}
Comments