Tailwind CSS Classes

Tailwind CSS class .visible

<div class="flex justify-center">
  <div class="bg-teal-400 h-16 w-24"></div>
  <div class="visible bg-teal-600 h-16 w-24"></div>
  <div class="bg-teal-400 h-16 w-24"></div>
</div>

Preview

CSS source

.visible {
  visibility: visible;
}

Check .visible 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.

More Tailwind CSS classes in Visibility category

© 2024 Shuffle. All rights reserved.