How To Make Image Black And White Css

[Solved] How To Make Image Black And White Css | Php - Code Explorer | yomemimo.com
Question : make img black and white css

Answered by : dns

.imageClass { -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */ filter: grayscale(100%);
}

Source : | Last Update : Sat, 23 Oct 21

Question : how to make white image black in css

Answered by : zunayed-bin-haque

.yourImage{ -webkit-filter: invert(100%); /* Safari/Chrome */ filter: invert(100%);
}

Source : https://stackoverflow.com/questions/39034548/is-it-possible-to-invert-an-black-and-white-image-using-css | Last Update : Wed, 06 Oct 21

Answers related to how to make image black and white css

Code Explorer Popular Question For Php