Hi I am trying to make this Blur background look like this image, so I would like to know if I can do it using only CSS3 or I need to use Javascript and JQuery:
And if I use only css. How to make blur responsive.

Here is my simple code:
#bg{ background-image: url('http://store6.up-00.com/2017-03/149079039538851.jpg'); background-repeat: no-repeat; background-size: cover; } #bg { background-position: center top; padding: 70px 90px 120px 90px; } #search-container { position: relative; } #search-bg { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; z-index: 99; -webkit-filter: blur(10px); filter: blur(10px); } #search { position: relative; z-index: 100; padding: 20px; background: rgba(34,34,34,0.75); } #search h2{ color:#ffffff; }
<div id="bg"> <div id="search-container"> <div id="search-bg"></div> <div id="search"> <h2>Hello World</h2> </div> </div> </div>
user7265692
source share