Skip to content

Instantly share code, notes, and snippets.

@makingsnippets
Created June 27, 2012 16:17
Show Gist options
  • Save makingsnippets/3005149 to your computer and use it in GitHub Desktop.
Save makingsnippets/3005149 to your computer and use it in GitHub Desktop.
CSS: Universal
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
background-repeat: no-repeat;
position: relative;
vertical-align: midle;
margin:0;
padding:0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment