I want to put two box shadows on a single element. The following doesn’t work:
@include box-shadow(1px 1px 488px 1px rgba(0, 0, 0, 0.12) inset);
@include box-shadow(4px 4px 4px 1px rgba(0, 0, 0, 0.28));
Not does providing a comma-separated list of box shadows into the box-shadow mixin (it only takes one argument). How can I accomplish this? I’m using the Boubon gem, but a straight CSS solution is fine too.
See the link for how to do this
Is there a way to use two CSS3 box shadows on one element?
The gist of it is to try using comma separated ones, I know you said you tried this already but maybe double check with the syntax they suggest in the answer to the link?