Answers for "howto flip 2 image css"

CSS
2

css flip image horizontally

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

flip image css

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

Browse Popular Code Answers by Language