Skip to content

Sizing

Classes for managing element sizes.

ClassDescription
.w-full100% width
.w-screen100% screen width
.w-autoAuto width
ClassDescription
.h-full100% height
.h-screen100% screen height
.h-autoAuto height

w-full (100% width)

h-32 (fixed height)

<div class="w-full">100% width</div>
<div class="h-full">100% height</div>
<div class="w-auto">Auto width</div>