Answers for "css turn the mirror mirror"

CSS
3

css image transform flip mirror

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

how to mirror object through css

.mirror {
  transform: scaleX(-1);
}
Posted by: Guest on June-13-2020

Browse Popular Code Answers by Language