Skip to content

Instantly share code, notes, and snippets.

@nobilelucifero
Created July 28, 2013 23:00
Show Gist options
  • Save nobilelucifero/6100635 to your computer and use it in GitHub Desktop.
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
/*
:: 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