I'm trying to make my background image blurred.. to then have text, buttons on top of it.. but blur is also blurring the text and buttons and I'm not sure how to separate the two.
header {
background: url("street-238458.jpg") no-repeat center;
-webkit-filter: blur(5px); /* Safari 6.0 - 9.0 */
filter: blur(5px);
background-size: 100% 100%;
height: 630px;
}
<header>
<div class="container-fluid">
<div class="text-center">
<h1 class="heading">My h1 is here... blah blah</h1>
<p>We help people out, every day.</p>
<button class="btn btn-lg btn-danger heading" href="#">This is the button</button>
</div>
</div>
</header>