Is it possible to use CSS/CSS3 to mirror text?
Specifically, I have this scissors char “✂” (✂
) that I\'d like to display pointing left a
For cross browser compatibility create this class
.mirror-icon:before {
-webkit-transform: scale(-1, 1);
-moz-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
transform: scale(-1, 1);
}
And add it to your icon class, i.e.
to get a search icon with the handle on the left