utils
Code

absolute-center

Utility classes to perfectly center elements using Tailwind CSS.

CSS Utilities

tailwind.css
@layer components {
  .absolute-center-x {
    @apply absolute left-1/2 -translate-x-1/2;
  }
 
  .absolute-center-y {
    @apply absolute top-1/2 -translate-y-1/2;
  }
 
  .absolute-center {
    @apply absolute-center-x absolute-center-y;
  }
}

On this page