So im getting this issue where the picture is fading on the edges. The reason they fade on the edges is because of the filter blur. (i need the blur filter) Any suggestions how i get rid of the fade or is it another way to do the blur effect in css, or do i have to do it in photoshop?
.bg-img{
background: url("http://hdwallpaperfun.com/wp-content/uploads/2014/08/Snow-Mountain-Wallpaper-High-Definition.jpg") no-repeat center center fixed;
background-size: cover;
display: block;
filter: blur(5px);
-webkit-filter: blur(5px);
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 1;
padding: 0;
margin: 0
}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="framside.css">
</head>
<body>
<div class="bg-img"></div>
</body>
</html>