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: .absolute

<div class="relative bg-gray-600 py-6">
  Relative
  <div class="absolute bottom-0 left-0 bg-gray-800 p-4">
    Absolute
  </div>
</div>

Preview

Relative
Absolute

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

.absolute { 
    position: absolute;
}

More in Tailwind CSS Positioning