Code: Select all
.image-blurred-edge {
position: relative;
}
.image-blurred-edge:before {
display:block;
content:'';
position:absolute;
width:100%;
height:100%;
-moz-box-shadow:inset 0px 0px 10px 8px #222;
-webkit-box-shadow:inset 0px 0px 10px 8px #222;
box-shadow:inset 0px 0px 10px 8px #222;
pointer-events: none;
}Any ideas on what the issue might be or even if there might be a better way to do this?