Tailwind CSS: Style an element that has no content

Updated: June 8, 2022 By: Pennywise Post a comment

In Tailwind CSS, you can apply some styles for elements that have no content by using the empty modifier (a modifier is just a prefix for a utility class).

Example

This example displays some boxes. Boxes with content will have a yellow background color, while boxes with no content will have a purple background color.

Screenshot:

The code:

<body class="p-20 grid grid-cols-4 gap-8">
    <div class="w-48 h-48 flex justify-center items-center bg-yellow-300 empty:bg-purple-700">Box One</div>
    <div class="w-48 h-48 flex justify-center items-center bg-yellow-300 empty:bg-purple-700">Box Two</div>
    <div class="w-48 h-48 flex justify-center items-center bg-yellow-300 empty:bg-purple-700"></div>
    <div class="w-48 h-48 flex justify-center items-center bg-yellow-300 empty:bg-purple-700">Box Four</div>
    <div class="w-48 h-48 flex justify-center items-center bg-yellow-300 empty:bg-purple-700">Box Five</div>
    <div class="w-48 h-48 flex justify-center items-center bg-yellow-300 empty:bg-purple-700">Box Six</div>
    <div class="w-48 h-48 flex justify-center items-center bg-yellow-300 empty:bg-purple-700"></div>
    <div class="w-48 h-48 flex justify-center items-center bg-yellow-300 empty:bg-purple-700"></div>
</body>

The usefulness of the empty modifier is clearest when you display a list of items dynamically in a loop (WordPress, React, Vue, Angular, etc).

Further reading:

You can also check out our CSS category page for the latest tutorials and examples.

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments

Related Articles