Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save currentcreative/8f8c168ed2d73297d26fd085e932cc36 to your computer and use it in GitHub Desktop.
Save currentcreative/8f8c168ed2d73297d26fd085e932cc36 to your computer and use it in GitHub Desktop.
Clamping (Wes Bos's trick)
/* Min value, flexible value in between, Max value */
padding: clamp(5px, 1vw, 25px);
font-size: clamp(10px, calc(1vw + 10px), 40px);
/* from : https://twitter.com/wesbos/status/1266490952165842955 */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment