Is there a way to override one specific value in the box-shadow list while preserving all other values? For example:
div{
box-shadow: 0 0 0 5px #00ff00 , 0 0 0 10px #ff0000 , 0 0 0 15px #0000ff ;
}
If we only want to change the second value without losing the others, it seems like we have to copy-paste the entire list. Using 'auto' or 'inherit' doesn't work for this purpose.
Can this be achieved using just CSS, or do we need to resort to jQuery or JavaScript's getComputedStyle method?
View the playground here: http://jsfiddle.net/cherniv/uspTj/5/
P.S. This issue may also apply to multiple background images lists.