Automatically set all tags to have a height of 0 if there is no content inside the tag [closed]

I always like to use this in my css:

p:empty{

    height: 0;

    // or 
    display: none;
}

Keep in mind that this only removes absolutely empty paragraph tags. If there is a space or anything it will not be targeted.
More about the empty selector here