Answers for "flip image upside down css"

CSS
3

css image transform flip mirror

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

flip image css

.image{
  transform: rotateY(180deg);
}
Posted by: Guest on May-08-2020

Browse Popular Code Answers by Language