I’ve set up an example which illustrates my issue:
http://jsfiddle.net/XZeYK/5/
If you view this in Chrome, it’s fine. Firefox, however, adds an unwanted border to the top of the #navigation element. I can get rid of it by setting a negative spread radius, but this then screws up my rounded corners.
Any ideas?
Thanks,
Monty
Hi actually its due to box-shadow as you defined so i just reduced the blur value of your box-shadow property and its working fine now.
CSS
i hope this will help you see the demo :-
http://jsfiddle.net/XZeYK/18/
And there are five values of box-shadow property as we can define :-
AS Example :
-moz-box-shadow: 3px 3px 5px 6px #ccc;The horizontal offset of the shadow, positive means the shadow will be on the right of the box, a negative offset will put the shadow on the left of the box.
The vertical offset of the shadow, a negative one means the box-shadow will be above the box, a positive one means the shadow will be below the box.
The blur radius (optional), if set to 0 the shadow will be sharp, the higher the number, the more blurred it will be.
The spread radius (optional), positive values increase the size of the shadow, negative values decrease the size. Default is 0 (the shadow is same size as blur).
Color