Skip to content

Instantly share code, notes, and snippets.

@bennybennet
Created February 3, 2013 09:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bennybennet/4701121 to your computer and use it in GitHub Desktop.
Save bennybennet/4701121 to your computer and use it in GitHub Desktop.
/* Don't use... */
body {
margin: 0px;
}
h1 {
padding: 0px;
}
/* ...instead use it without measurement units */
body {
margin: 0;
}
h1 {
padding: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment