Problem Statement
How do vh and vw units help in responsive design?
Explanation
`vh` and `vw` scale elements according to the viewport size, making designs automatically adjust to different screen sizes without needing breakpoints. For example, hero sections often use height: 100vh.
Code Solution
SolutionRead Only
header { height: 100vh; background-size: cover; }