Lesson 15 of 3050%
(Progress persistence is disabled until Phase 9)
Tailwind CSS
Beginner
Height
Setting element height.
Use h-{size} for height.
Fixed Heights
h-16, h-32, h-64, etc.
Full & Screen Height
h-full: 100% of the parent’s heighth-screen: 100vh (100% of the viewport height)
<div class="h-screen bg-indigo-500 flex items-center justify-center">
<p class="text-white">This container is as tall as the screen.</p>
</div>
Try It Yourself