Last active
October 1, 2019 02:43
-
-
Save einnar82/a9e1db79338b80b651a84beb62693311 to your computer and use it in GitHub Desktop.
[Fluid Typography] (https://css-tricks.com/snippets/css/fluid-typography/)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
/* font-size: calc(14px + (26 - 14) * ((100vw - 300px) / (1600 - 300))); */ | |
font-size: calc([minimum size]px + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]px) / ([maximum viewport width] - [minimum viewport width]))); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment