Reputation: 1339
I've got this page where I'd like to give to the exterior of the player a blurry effect, something like this, with the black part being transparent.
Is it possible to do that only with CSS?
Thanks!
Upvotes: 0
Views: 1120
Reputation: 398
Try using box-shadow
instead of a css border
box-shadow: 0px 0px 10px #000000;
Upvotes: 1