DEV Community

Discussion on: Fix Collapsing in CSS3

Collapse
 
abdelrahmandeghedy profile image
Abdelrahman AbouDeghedy

Thanks!

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