how to mirror flip a video tag css

Solutions on MaxInterview for how to mirror flip a video tag css by the best coders in the world

showing results for - "how to mirror flip a video tag css"
Alejandro
04 Feb 2016
1#videoElement
2{
3    transform: rotateY(180deg);
4    -webkit-transform:rotateY(180deg); /* Safari and Chrome */
5    -moz-transform:rotateY(180deg); /* Firefox */
6}
7