CSS Viewport units
- An alternative unit to use for font-size, padding, margin, etc.
- The four types are
vw
,vh
,vmin
, andvmax
vw
is viewport widthvh
is the viewport heightvmin
is the smaller of the two viewport dimensionsvmax
is the larger of the two viewport dimensions
p {
font-size: 3vw; /* 3% of the viewport width */
}