css invert image code example
Example 1: invert css
.image {
filter: invert(1);
}
Example 2: how to mirror object through css
.mirror {
transform: scaleX(-1);
}
Example 3: invert png color css
img {
-webkit-filter: invert(1);
filter: invert(1);
}