Is it possible to use -webkit-filter: blur();
on background-image?
I have tried this code and it just blurs everything but the background-image:
body {
background-image: url('http://www.publicdomainpictures.net/pictures/10000/velka/pebbles-and-sea-11284647414Rbeh.jpg');
background-attachment: fixed;
-webkit-filter: blur(5px);
}
I have been searching for a while but cannot find anyone resources describing how to do this.