Fixed widths
w-{n} where n is 0 to 96
Percentage widths
w-{fraction} or w-full
Viewport width
w-screen
Breakpoints and media queries
<div class="w-1/2 md:w-full"></div>
div size will be half in mobile and full in medium and other screen size
Fixed height
h-{n} where n is 0 to 96
Full height
h-full
Viewport height
h-screen
Breakpoints and media queries
<div class="h-8 md:h-full"></div>