Created
June 18, 2020 14:56
-
-
Save codedrops-io/1ae2cb8101e2c1b26a975cbf86cab6b6 to your computer and use it in GitHub Desktop.
Initialize the body of your document.
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 { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
* { | |
box-sizing: inherit; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
&:after, | |
&:before { | |
padding: 0; | |
margin: 0; | |
box-sizing: inherit; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment