Stefano De Rosso
Stefano De Rosso

Reputation: 1339

Blurred video-player border with CSS

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

Answers (1)

steinmas
steinmas

Reputation: 398

Try using box-shadow instead of a css border

box-shadow: 0px 0px 10px #000000;

Upvotes: 1

Related Questions