Reputation: 37
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
Reputation: 3977
img {
filter: grayscale(0.9) brightness(1.2);
}
<img src="http://beerhold.it/400/300">
Upvotes: 5