Complete the code to set the width to the minimum of 300px or 50% of the viewport width.
width: [1](300px, 50vw);
The min() function chooses the smaller value between 300px and 50vw, so the width will never exceed 300px or 50% of the viewport width.
Complete the code to set the font size to the maximum of 16px or 2vw.
font-size: [1](16px, 2vw);
The max() function picks the larger value between 16px and 2vw, ensuring the font size is never smaller than 16px.
Fix the error in the code to correctly limit the height between 100px and 50vh.
height: [1](100px, 50vh);
Using min() here ensures the height does not exceed 100px or 50vh, whichever is smaller.
Fill both blanks to set padding to the minimum of 20px or 5vw and margin to the maximum of 10px or 2vw.
padding: [1](20px, 5vw); margin: [2](10px, 2vw);
Padding uses min() to not exceed 20px or 5vw. Margin uses max() to be at least 10px or 2vw.
Fill all three blanks to set width to clamp between 200px and 80vw with a preferred size of 50vw.
width: [1]([2], 50vw, [3]);
The clamp() function sets width to stay between 200px (minimum) and 80vw (maximum), preferring 50vw.