Skip to content

Instantly share code, notes, and snippets.

@MMasey
MMasey / image-flip.css
Created July 20, 2018 12:30
How to flip an image using CSS
.flip-vertical {
transform: scaleY(-1);
}
.flip-horizontal {
transform: scaleX(-1);
}
.flip-both {
transform: scale(-1);