flip horizontal css code example
Example 1: flip image css
.image{
transform: rotateY(180deg);
}
Example 2: css flip image horizontally
.flip-horizontally {
transform: scaleX(-1);
}
.image{
transform: rotateY(180deg);
}
.flip-horizontally {
transform: scaleX(-1);
}