I have this music player, where the album art is shown on the front and blurred as a background behind all the other elements. See image
I don't want that blur to extend beyond the container as shown in the image.
My css at the moment for the background album is looking like this:
box-shadow: 0 10px 150px rgba(0, 0, 0, .3) inset;
-webkit-filter: blur(30px);
-moz-filter: blur(30px);
-o-filter: blur(30px);
-ms-filter: blur(30px);
filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='30');
filter: blur(30px);
object-fit:cover;
If any more info is needed let me know.