Answers for "flip image css"

CSS
2

css flip image horizontally

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

flip image css

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

how to mirror object through css

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

flip image css

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

flip an image js

<div class="f1_container">
    <div class="shadow f1_card">
        <div class="front face">
            <img src="http://media-cdn.tripadvisor.com/media/photo-s/03/48/0b/14/dolphin-view-chalets.jpg" style="height: 281px; width: 450px;" />
        </div>
        <div class="back face center">
            <img src="http://media-cdn.tripadvisor.com/media/photo-s/03/48/0b/14/dolphin-view-chalets.jpg" style="height: 281px; width: 450px;" />
        </div>
    </div>
</div>
Posted by: Guest on July-28-2020

Browse Popular Code Answers by Language