Skip to content

Instantly share code, notes, and snippets.

@oli
Created May 3, 2011 08:19
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 oli/952995 to your computer and use it in GitHub Desktop.
Save oli/952995 to your computer and use it in GitHub Desktop.
Example of aligning browser-prefixed properties to the value
/* Example of aligning browser-prefixed properties to the value */
.star {
display: inline-block;
-webkit-transform: rotate(18deg);
-moz-transform: rotate(18deg);
-ms-transform: rotate(18deg);
-o-transform: rotate(18deg);
transform: rotate(18deg);
}
/*
This allows you to easily edit all values via column select. However it can induce the dreaded spaces vs tabs holy war for tabs users ;) It’s made me change from tabs to spaces
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment