css image transform flip mirror

Solutions on MaxInterview for css image transform flip mirror by the best coders in the world

showing results for - "css image transform flip mirror"
Erika
02 Jan 2017
1/* Flipping/mirroring horizontally */
2img {
3  transform: scaleX(-1);
4}