Problem Statement
Which CSS units are relative to the viewport size?
Explanation
Viewport height (vh) and viewport width (vw) are relative to the visible screen size. `1vh` = 1% of viewport height; `1vw` = 1% of viewport width.
Code Solution
SolutionRead Only
section { height: 100vh; width: 100vw; }