Skip to content

Instantly share code, notes, and snippets.

@toddmotto
Created December 12, 2012 12:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save toddmotto/4267440 to your computer and use it in GitHub Desktop.
Save toddmotto/4267440 to your computer and use it in GitHub Desktop.
Kickass micro reset and helper.
*, *:after, *:before {
margin:0;
padding:0;
box-sizing:border-box;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
-webkit-font-smoothing:antialiased;
-moz-font-smoothing:antialiased;
-o-font-smoothing:antialiased;
font-smoothing:antialiased;
text-rendering:optimizeLegibility;
}
Copy link

ghost commented Jan 8, 2013

Thanks.

I love this one too:

* {
    resize: none;
    border: none;
    outline: none;
    text-decoration: none;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment