Dr. Morpheus
Dr. Morpheus

Reputation: 37

CSS greyscale and brightness at same time

I wanted to change image to grayscale(0.9) and brightness (120%) at the same time. How can I do that?

    img{
    -webkit-filter: grayscale(0.9);
    -webkit-filter: brightness(1.2);
    }

How?

Upvotes: 2

Views: 4125

Answers (1)

Andrei Fedorov
Andrei Fedorov

Reputation: 3977

img {
  filter: grayscale(0.9) brightness(1.2);
}
<img src="http://beerhold.it/400/300">

Upvotes: 5

Related Questions