Skip to content

Instantly share code, notes, and snippets.

@ten1seven
Created December 14, 2017 23:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ten1seven/1b4e7181e6971cfb5726c1d21a9f78d6 to your computer and use it in GitHub Desktop.
Save ten1seven/1b4e7181e6971cfb5726c1d21a9f78d6 to your computer and use it in GitHub Desktop.
Responsive font sizing
/*
16: smallest font size
22: largest font size
320: smallest screen size
1600: largest screen size
*/
font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1600 - 320)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment