Can’t complain the great convenient functionality of auto-generating <p>
tag in WordPress, but sometimes it’s pretty annoying as it breaks some lines unintentionally. Here’s how to remove only empty <p>
tag with a simple CSS line.
CSS: Hide/Remove Empty <p> tags
p:empty { display: none; }