Here is a link to my fiddle:
https://jsfiddle.net/aod4rmx8/
.background{
position: absolute;
left: 0;
width:50%;
right: 0;
bottom: 0;
top:0;
background-color: #000;
/*box-shadow: 100px 0 40px 6px rgba(0, 0, 0, 1);*/
-webkit-box-shadow: 200px 1px 300px 200px rgba(0,0,0,0.75);
-moz-box-shadow: 200px 1px 300px 200px rgba(0,0,0,0.75);
box-shadow: 200px 1px 300px 200px rgba(0,0,0,0.75);
}
I am looking to add a blur effect on the top and right side of the black background. This is the desired result I want to achieve:
https://i.sstatic.net/B22kF.jpg
I would like to have a slight shadow on the image at the right side, as well as a blur on the edges of the right and top sides of the div with the background color. Any suggestions on how to accomplish this?