Answers for "flip with rotate css"

CSS
3

css image transform flip mirror

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

css flip image horizontally

.flip-horizontally {
  transform: scaleX(-1);
}
Posted by: Guest on May-17-2021

Browse Popular Code Answers by Language