Last active
September 23, 2019 22:48
-
-
Save nickbytes/4922c57c0f05cc2fa2bcd40527d0ee16 to your computer and use it in GitHub Desktop.
my css reset
This file contains 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
html { box-sizing: border-box } | |
*, *:before, *:after { box-sizing: inherit; } | |
body { margin: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } | |
body, h1, h2, h3, h4, h5, h6, p, ol, ul { | |
margin: 0; | |
padding: 0; | |
font-weight: normal; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment