webkit multiple inline shadows
Posted
by meo
on Stack Overflow
See other posts from Stack Overflow
or by meo
Published on 2010-04-30T20:09:56Z
Indexed on
2010/05/01
20:17 UTC
Read the original article
Hit count: 323
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?
© Stack Overflow or respective owner