Alternatively, you can achieve the same effect using javascript - better CSS - as shown in this JSFiddle
var blurredDiv = document.createElement('div');
blurredDiv.className = 'blurry';
document.body.appendChild(blurredDiv);
body {
margin:0;
padding:0;
background-image:url('//cdn01.wallconvert.com/_media/wallpapers_2880x1800/1/4/silver-bmw-i8-39331.jpg');
background-size:cover;
}
.blurry {
width:calc(100% + 6px);
height:73px;
position:fixed;
top:-3px;
left:-3px;
background-image:url('//cdn01.wallconvert.com/_media/wallpapers_2880x1800/1/4/silver-bmw-i8-39331.jpg');
background-size:cover;
background-position:0 3px;
-webkit-filter: blur(3px);
filter: blur(3px);
}
Run codeHide resultWhere are the following CSS lines:
width:calc(100% + 6px);
height:73px;
position:fixed;
top:-3px;
left:-3px;
background-position:0 3px;
div 70px , , background-position:0 3px; 3px, top:-3px .blurry div