flipping image horizontal
Sep 26
You can use this trick to flip an image horizontal also it works on IE. Just add the following CSS class to your image.
Note: It works with source images only (not background image)
.flip-horizontal {
-moz-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: fliph; /*IE*/
}








Recent Comments