Created
May 30, 2020 07:44
-
-
Save currentcreative/8f8c168ed2d73297d26fd085e932cc36 to your computer and use it in GitHub Desktop.
Clamping (Wes Bos's trick)
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
/* 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