I'm attempting to recreate a shadow effect in HTML similar to one I created in Photoshop:
https://i.sstatic.net/fBcBl.png
I believe a basic HTML structure like the one below should suffice, but I'm unsure:
<div id="anotherMask">
<div id="mask">
<div id="shadow">
<div id="content">
FOO
</div>
</div>
</div>
</div>
I won't include the CSS here as it may make the question too lengthy. Here are two different approaches I've tried, but neither has worked as expected:
https://jsfiddle.net/tvhydm74/
I attempted using a div with a black border, transparent background, and blur filter on a layer beneath another, but it ended up filtering everything instead:
https://jsfiddle.net/6gbsejq4/
Any assistance would be greatly appreciated :)