1
HTML/CSSBeginner#css#overflow
min() picks the smallest of its arguments, max() the largest, and clamp(min, preferred, max) locks a value between a floor and ceiling while preferring a fluid value in between — great for fluid typography without media queries.
h1 { font-size: clamp(1.5rem, 4vw + 1rem, 3rem); }
.container { width: min(90%, 1200px); }