Skip to content

Instantly share code, notes, and snippets.

@dwighthouse
Created August 26, 2013 18:43
Show Gist options
  • Save dwighthouse/6344986 to your computer and use it in GitHub Desktop.
Save dwighthouse/6344986 to your computer and use it in GitHub Desktop.
Use after normalize.css ( http://necolas.github.io/normalize.css/ )
/* Personal Reset (to be used after normalize.css) */
html, html *
{
margin:0;
padding:0;
border:0;
outline:0;
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
box-sizing:border-box;
}
html
{
height:100%;
}
body
{
position:relative;
min-height:100%;
}
a
{
text-decoration:none;
color:inherit;
}
a:focus
{
outline:none;
}
ul
{
list-style:none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment