Lesson 21 of 3070%
(Progress persistence is disabled until Phase 9)
Tailwind CSS
Beginner
Align Items
Aligning flex items along the cross axis.
Control alignment on the cross axis.
items-startitems-centeritems-enditems-baselineitems-stretch(default)
<!-- Perfectly Centered Content -->
<div class="flex items-center justify-center h-64 bg-indigo-100">
<h1 class="text-indigo-600 text-2xl">Perfectly Centered!</h1>
</div>
Try It Yourself