DEV Community

Discussion on: Fix Collapsing in CSS3

Collapse
 
afif profile image
Temani Afif

and in case you are sure the div is empty you can do

div:empty::before {
    content: "";
    display: inline-block;
}
Enter fullscreen mode Exit fullscreen mode