Skip to content

Instantly share code, notes, and snippets.

@moklick
Created August 15, 2014 10:30
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 moklick/c2ebde8e821d05b874b9 to your computer and use it in GitHub Desktop.
Save moklick/c2ebde8e821d05b874b9 to your computer and use it in GitHub Desktop.
Mini CSS Reset
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*:after, *:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.group:before, .group:after {
content: "";
display: table;
}
.group:after {
clear: both;
}
.group {
zoom: 1;
}
body, html {
height: 100%;
}
body {
font-family: sans-serif;
color: #222;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment