Posted By

JimSangwine on 05/05/11


Tagged


Versions (?)

Flip an Image


 / Published in: CSS
 

  1. /* You can flip images with CSS! Possible scenario: having only one graphic for an "arrow", but flipping it around to point in different directions. */
  2.  
  3. img {
  4. -moz-transform: scaleX(-1);
  5. -o-transform: scaleX(-1);
  6. -webkit-transform: scaleX(-1);
  7. transform: scaleX(-1);
  8. filter: FlipH;
  9. -ms-filter: "FlipH";
  10. }

Report this snippet  

You need to login to post a comment.