Skip to content

Instantly share code, notes, and snippets.

@MMasey
Created July 20, 2018 12:30
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 MMasey/f8c4f32a93a53faf487aab256820b150 to your computer and use it in GitHub Desktop.
Save MMasey/f8c4f32a93a53faf487aab256820b150 to your computer and use it in GitHub Desktop.
How to flip an image using CSS
.flip-vertical {
transform: scaleY(-1);
}
.flip-horizontal {
transform: scaleX(-1);
}
.flip-both {
transform: scale(-1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment