Created
July 28, 2013 23:00
-
-
Save nobilelucifero/6100635 to your computer and use it in GitHub Desktop.
A super super (and silly) tiny CSS reset and normalizer (kinda) for my HTML/CSS/JS demos
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
| /* | |
| :: tinyrn.css APLHA | |
| :: | |
| :: Not even a proper release | |
| */ | |
| /* Apply the border-box box-model also to the pseudo elements */ | |
| *, *:after, *:before { | |
| margin: 0; | |
| padding: 0; | |
| font-family: sans-serif; | |
| text-rendering: optimizeLegibility; | |
| -webkit-font-smoothing: antialiased; | |
| -webkit-box-sizing: border-box; | |
| -moz-box-sizing: border-box; | |
| box-sizing: border-box; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment