I am trying to achieve a shadow effect without displaying the square itself. Here is the block of code I have been working with:
.light-blur-effect {
height: 100px;
width: 100px;
background-color: #BEEEF5;
opacity: 0.4;
filter: drop-shadow(20px 20px 20px #BEEEF5);
}
My initial thought was to adjust the opacity, but that did not produce the desired result. Any suggestions on achieving just the shadow effect would be greatly appreciated.