Tested tool guide
Tested browser tools
Checked August 16, 2026
What Responsive Font Size Calculator does, with a checked example
This tool converts two font sizes and the screen-width range between them into one CSS declaration: font-size: clamp(min, calc(offset + coefficient*vw), max). You enter a small size, a large size, and the narrowest and widest viewports between which the text should grow; the tool fits a straight line through those two points and emits a ready-to-paste rule. What surprises most users: outside the viewport range you chose, the size stops scaling. Below the narrow width the text holds at the minimum, above the wide width it holds at the maximum. That flatness is the clamp at work, not a bug.
Worked example
A concrete input and expected output from the current implementation.
Input
Min size 16px at viewport 320px; max size 24px at viewport 1280px
->
Expected output
clamp(16px, calc(13.33px + 0.83vw), 24px)
The preferred value is a line through (320, 16) and (1280, 24): 8px of growth over 960px of viewport gives a 0.83vw coefficient, and the intercept lands at 13.33px. Check: 13.33 + 0.83 x 3.2 = 16.0 and 13.33 + 0.83 x 12.8 = 24.0 at the endpoints.