JSFiddle - React, Tailwind, and code Playground

by djdiego88

HTML

<img src="http://lorempixum.com/output/technics-q-c-300-200-7.jpg" alt="Rotación de imágen" />

CSS

img {
    transform:
        rotate(45deg)
        scale(-1, 1);
    
    /* para firefox, safari, chrome, etc. */
    -webkit-transform:
        rotate(45deg)
        scale(-1, 1);
    -moz-transform:
        rotate(45deg)
        scale(-1, 1);
    
    /* para ie */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0.5, mirror=1);
    
    /* opera */
    -o-transform:
        rotate(45deg)
        scale(-1, 1);
}