Skip to content

Instantly share code, notes, and snippets.

@ideefixe
Created January 28, 2013 20:54
Show Gist options
  • Save ideefixe/4658908 to your computer and use it in GitHub Desktop.
Save ideefixe/4658908 to your computer and use it in GitHub Desktop.
Flip Image CSS
img {
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment