I have html structure
<div class="div">
<img src="img1.jpg" class="img" />
</div>
How do I make div appear blurred without removing image ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s not really a blur, but transparency.
http://www.w3schools.com/Css/css_image_transparency.asp
add something like this to your css file :
I think it’s the only solution you’ll find without using some javascript or dirty css3 hacks like http://simurai.com/post/716453142/css3-image-blur for example.