Created
October 5, 2016 09:06
-
-
Save JawsomeJason/5d5610703ae41b9624c1a34c481bd2d1 to your computer and use it in GitHub Desktop.
Most basic browser reset
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
// reset | |
* { | |
&, | |
&:before, | |
&:after { | |
font: inherit; | |
// -webkit-font-smoothing: antialiased; | |
// font-smoothing:antialiased; | |
text-rendering:optimizeLegibility; | |
// box model | |
margin: 0; | |
padding: 0; | |
box-sizing: inherit; | |
} | |
} | |
:root { | |
box-sizing: border-box; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment