I've got a quick question.
I've got a div class that is 50px by 50px. I was wondering if I could do something like:
<body>
<div id="blur">
</div>
</body>
style
body {
background-image:url(image.png);
}
#blur {
width:50px;
height:50px;
-webkit-filter:blur(2px);
}
So the background image is layed out awesome.
But I create a div 50 by 50px in size that I want blur. and just the spot on the #blur...well...blurs, is this possible?(Im currently trying the setting I just displayed but it ain't working...) any workarounds for this?(without using jQuery)