Is there a way to use two CSS3 box shadows on one element?

Solution 1:

You can comma-separate shadows:

box-shadow: inset 0 2px 0px #dcffa6, 0 2px 5px #000;

Solution 2:

Box shadows can use commas to have multiple effects, just like with background images (in CSS3).