The shadows are not working as intended

32 views Asked by At

If for a element whose id is A, I am applying the following box shadow based on browser:

#A{
box-shadow: 2px 2px 5px blue inset;
-moz-box-shadow: 3px 3px 5px red inset;
-webkit-box-shadow: 2px 2px 5px green inset;
}

Chrome gives the green box shadow, but Firefox doesn't. It gives a blue shadow, though it should be red.

1

There are 1 answers

1
Hebrus On BEST ANSWER

Mozilla changed the box-shadow property of Firefox since Version 4 as of March 22, 2011

RESOURCE