I have trouble setting multiple shadows on one element in webkit:
-moz-box-shadow: inset 0 0 3px #999, 0 0 5px #fff;
-webkit-box-shadow: inset 0 0 3px #999, 0 0 5px #fff;
box-shadow: inset 0 0 3px #999, 0 0 5px #fff;
it works fine in firefox but safari displays only the inset shadow. i tried to set both values separately. But safari takes just count of the last value:
-webkit-box-shadow: inset 0 0 3px #999;
-webkit-box-shadow: 0 5px #fff;
is it possible to set more then one shadow on a single element in safari/webkit?