Questions: Responsive Typography Across Devices

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A designer wants body text to grow smoothly from 16px on small screens to 24px on large screens without any abrupt jumps. Which CSS approach achieves this?

ASetting font-size: 16px and overriding it to 24px at a single breakpoint with a media query
BUsing font-size: clamp(1rem, 0.5rem + 1.5vw, 1.5rem) to scale fluidly between the two bounds
CSetting font-size: 20px as a compromise value that works at all screen sizes
DUsing em units instead of px, which automatically scale with viewport width
Question 2 Multiple Choice

A mobile layout has body text set at 14px. The resulting line length is only 25 characters per line. What is the most appropriate responsive typography fix?

AIncrease the font size to make lines longer — larger text means more characters fit
BSlightly increase font size and/or allow the text container to be wider to reach the 45–75 character guideline
CReduce leading (line-height) to compensate for the short lines
DThe 45–75 character guideline only applies to desktop; 25 characters is acceptable on mobile
Question 3 True / False

Fluid typography, implemented with CSS clamp() or calc() with vw units, allows type size to scale continuously across viewport widths without requiring multiple breakpoints.

TTrue
FFalse
Question 4 True / False

The ideal characters-per-line guideline (45–75 characters) changes on smaller screens because mobile reading habits are different from desktop reading habits.

TTrue
FFalse
Question 5 Short Answer

Why must type size, line length, and leading all be adjusted together when scaling typography across devices, rather than treating them as independent variables?

Think about your answer, then reveal below.