Hi, I want to make a transparent rounded rectangle with a shadow. The closest thing I got is 1%
opacity, if I set it to 0%
the shadow is lost. Here’s the generated CSS:
position: absolute;
width: 21px;
height: 20px;
background: rgba(255, 255, 255, 0.01);
box-shadow: 0px 6px 12px -2px rgba(0, 0, 0, 0.4);
border-radius: 6px;
How do I achieve this ? Thanks !