Ever since CSS filter effects landed in WebKit, I thought about theirs practical implementation. How will they fit with the current web design trends? At this time, my initial impressions are that the best way to showcase the power of CSS filters is something like an image gallery.
With so many CSS filters to choose from, it will be fun to create image galleries in the future. Further in this article we’ll create a simple image gallery using CSS filters and the CSS3 :not selector.

Whilst at the beginning we had just WebKit nightlies support, now you can view the filter effects using Chrome Canary too. I encourage you to download it in order to view the CSS filter effects in action. Also, I’m pretty sure that soon we’ll see filters support also in stable Chrome’s releases.
Here are the current filter effects: grayscale, sepia, saturate, hue-rotate, opacity, invert, brightness, contrast, blur, drop-shadow. Read more about them here.
In this article we’ll be using just the blur and grayscale effects in order to create our small gallery. Also, the CSS3 :not selector will help us here as you’ll see below.
The HTML
Getting back to our image gallery, let’s see how the markup looks like:
<ul class="gallery"> <li><img src="1.jpg"></li> ... <li><img src="6.jpg"></li> </ul>
The CSS
I think it’s the first time in a long time when I don’t have too many CSS lines to show you. This time, less is more :)
The interesting part is related to the .gallery:hover li:not(:hover) selector. When you hover over the list, we’ll assume you’ll hover also over a list element and we’ll apply some filters to the non hovered list elements.

This is how the other images looks like when the tulip image is hovered.
.gallery{
list-style: none;
margin: 50px auto; padding: 0;
width: 642px;
font-size: 0; /* fix inline-block spacing */
}
.gallery li{
display: inline-block;
*display: inline;
zoom: 1;
width: 200px; height: 150px;
margin: 2px;
border: 5px solid #fff;
box-shadow: 0 2px 2px rgba(0,0,0,.1);
transition: all .3s ease;
}
.gallery:hover li:not(:hover){
-webkit-filter: blur(2px) grayscale(1);
opacity: .7; /* fallback */
}
For this example I chose to use inline-block instead float and font-size: 0 is my “kung-fu” move to fight the space between inline-block elements.
Regarding degradation, here’s my method:
- If the browser support CSS filters and
:not, then apply filters and also decrease opacity. - If the browser does not support CSS filters (currently all except Canary) but it does support the
:not, then just decrease opacity. - If the browser is too old and does not support neither opacity nor
:notselector, then do nothing.
Browser support
Here’s the current support for the CSS filter effects: Chrome 20.0.1123.0 (currently Canary) and Webkit nightly.
Conclusion
The future sounds good. We already have a Flexbox Module and CSS Filters, I like to think that in the near future we’ll also have variables and the CSS parent selector ready to use. Exciting times for web developers, don’t you think so?
In CSS Demo, when I try removing opacity: .7, I realize fillter blur and grayscale seem don’t work……
I use Firefox 12 and Google Chrome 18 for this test
If you read the article, you’ll see that the filter support is only in Chrome Canary for now. It’s pretty well specified.
Ok, I’ve got it! :D
The filters work also with Chrome beta 19.x
@Enrico, this is nothing than good news.
CSS Variables are just plain wrong. See Bert Bos’ old explanation why. Front-end hipster need to concentrate more on trashy UI posturing and less on browser internals and bloating up the standards.
not bad
Wow, Only css3 – no javascript
Great tutorial, as yet I haven’t experimented much with css filter effects mainly because of the lack of browser support. This tutorial however uses the technique subtlety to enhance viewing but without hindering users with non compliant browsers. When used in this way I think filters can really add to any website.
but Safari is not working for Grayscale. Any clue ?
That a vey good thing!
How can we have a “clean” border” ?
We can see than the white border is blur too i would like see only blur effect on image.
Do you have an idea?