Skip to content

Instantly share code, notes, and snippets.

@minipai
Created November 12, 2012 10:54
Show Gist options
  • Save minipai/4058664 to your computer and use it in GitHub Desktop.
Save minipai/4058664 to your computer and use it in GitHub Desktop.
Things It Might Be Fun/Useful to Try the Universal (*) Selector On from CSS-Tricks
* {
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
}
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment