Skip to content

Instantly share code, notes, and snippets.

@geoffa
Created November 20, 2009 21:28
Show Gist options
  • Save geoffa/239800 to your computer and use it in GitHub Desktop.
Save geoffa/239800 to your computer and use it in GitHub Desktop.
CSS to flip things.
/*
Flips a webpage 180deg.
Apply class="flip" to <body>
From:
- http://mmm.phpied.com/
- http://developer.yahoo.net/blog/archives/2009/09/search_performance.html
*/
.flip {
-moz-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment