 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Flip an image on mouse over with CSS
Use the transform CSS property to flip an image. You can try to run the following code to flip an image on mouseover:
Example
<!DOCTYPE html> <html>    <head>       <style>          .myimg:hover {             transform: scaleX(-1);          }       </style>    </head>    <body>       <h2>Heading One</h2>       <p>Let's flip the image on mouse over:</p>       <img class = "myimg" src = "https://www.tutorialspoint.com/python/images/python_data_science.jpg"          alt = "Python Data Science" width = "300" height = "200">    </body> </html> Advertisements
 