I am attempting to replicate the subtle shadow effect displayed in the image.
https://i.sstatic.net/fa7iB.png https://i.sstatic.net/YgY0W.png
Struggling with implementing this shadow effect using CSS. I experimented with box-shadow
:
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
resulting in: https://i.sstatic.net/5yqm8.png The outcome is not quite what I'm aiming for. How can I achieve that subtle shadow effect?