flip image

Solutions on MaxInterview for flip image by the best coders in the world

showing results for - "flip image"
Salma
04 Aug 2019
1
2  <style>
3img:hover {
4  -webkit-transform: scaleX(-1);
5  
6  transform: scaleX(-1);
7}
8</style>
9
10<img src="paris.jpg" 
11  alt="Paris"> 
similar questions
imageflip an image js