DEV Community

Discussion on: Fix Collapsing in CSS3

Collapse
 
afif profile image
Temani Afif

For the empty div I would add the following CSS:

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

This will trigger the creation of a linebox without having to add a space inside your div.

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