DEV Community

M. T. H. Titumir
M. T. H. Titumir

Posted on

Centering a div inside his sibling div using tailwind css.

<div class="relative">
<div>
<img src="your-image.jpg" alt="Your Image">
</div>
<div class="absolute inset-0 flex items-center justify-center">
<!-- Contents of the second div -->
</div>
</div>

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay