Last active
February 21, 2021 01:16
-
-
Save pak11273/a280ac5ddce4f1579a2c8d5345b707ce to your computer and use it in GitHub Desktop.
Global CSS Styles
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
* { | |
box-sizing: border-box; | |
max-width: 100%; | |
} | |
html { | |
/* browser font-size is usually 16px */ | |
/* em relies on parent font-size */ | |
/* root font-size */ | |
font-size: 62.5%; | |
} | |
body { | |
font-size: 1.6rem; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment