I have a problem with an image. I tried to blur a part of an image, but my solution deosn't work. Please, take a look at this code:
HTML file
<div id="image">
<div class="blur"></div>
</div>
CSS file
#image {
width: 940px;
height: 360px;
background-image: url('../img/photo.png');
}
#image .blur {
background-image: url('../img/photo.png');
background-position: center right;
-webkit-filter: blur(3px);
-moz-filter: blur(3px);
-o-filter: blur(3px);
-ms-filter: blur(3px);
filter: blur(3px);
filter: blur(3px);
float: right;
height: 100%;
width: 360px;
}
It's possible in CSS?