Answers for "how to make color image black and white css"

CSS
1

make img black and white css

.imageClass {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
Posted by: Guest on October-16-2021
-1

how to make white image black in css

.yourImage{
    -webkit-filter: invert(100%); /* Safari/Chrome */
    filter: invert(100%);
}
Posted by: Guest on September-29-2021

Code answers related to "how to make color image black and white css"

Browse Popular Code Answers by Language