Skip to content

Empty Selector

• 1 min

Use the :empty {} selector to hide empty paragraphs (often created by users within content management systems)

p:empty {
display: none;
}