Answers for "flip the image with out transform in css"

CSS
3

css image transform flip mirror

/* Flipping/mirroring horizontally */
img {
  transform: scaleX(-1);
}
Posted by: Guest on April-09-2021
3

flip image css

img{
  transform: rotateY(180deg);
}
Posted by: Guest on January-27-2021

Browse Popular Code Answers by Language