Problem Statement
What does the CSS clamp() function do?
Explanation
`clamp(min, preferred, max)` allows fluid, responsive values while preventing them from exceeding given limits — ideal for responsive font sizes.
Code Solution
SolutionRead Only
h1 { font-size: clamp(1rem, 4vw, 2rem); }Practice Sets
This question appears in the following practice sets:
