is now part of Shuffle™. The new editor includes templates for Tailwind CSS, Bootstrap, Bulma, and Material-UI.
Switch to Shuffle →
← Tailwind CSS classes list

Tailwind CSS class: .hidden

<div class="bg-gray-400 p-2">
  <span class="hidden bg-teal-400">One</span>
  <span class="block bg-teal-400">Two</span>
</div>

Preview

Two

Check .hidden in a real project

Click one of the examples listed below to open the Shuffle Visual Editor with the UI library that uses the selected component.

CSS source

.hidden {
    display: none;
}

More in Tailwind CSS Display