7
It is possible yes, with the property tansform: scaleX(..)
you do that easily:
img {
width: 260px;
}
#esquerda {
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
<img id="direita" src="https://i.stack.imgur.com/o0Elb.png">
<img id="esquerda" src="https://i.stack.imgur.com/o0Elb.png">
Make one with Rotate too (and put an observation so that in the case of arrow, by chance, as it is symmetrical, it works out) :P
– Bacco