Last active
August 11, 2018 00:53
-
-
Save JawsomeJason/de4c722baab646a450acf901ed2fb529 to your computer and use it in GitHub Desktop.
Minimal CSS 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
/* smallest reset ever */ | |
*, *:before, *:after { | |
margin: 0; | |
padding: 0; | |
border: 0; | |
font: inherit; | |
vertical-align: baseline; | |
color: inherit; | |
box-sizing: inherit; | |
} | |
html { | |
box-sizing: border-box; | |
font-size: 100%; | |
} | |
ul, ol { | |
list-style: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment