Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was testing a box-shadow effect in both Chrome and Firefox and I was surprised to see a drastic difference in rendering between the two browsers. Notably, Firefox's rendering was much darker. Here are two reference images:

Chrome Firefox

The first image is rendered in Chrome 22, and the latter in Firefox 16, both running under Mac OS 10.8.2. I have no idea why the two images are rendering so differently. Here's the box shadow itself, same for both browsers:

box-shadow: 0px 1px 3px rgba(0,0,0,0.3), inset 0px 4px 2px -2px rgba(255,255,255,0.7), inset 0px -3px 1px -2px rgba(0,0,0,0.3), inset 0px -20px 200px -100px rgba(0,0,0,0.5);

For a live demo, you can see here. Mouse over the box to get the effect.

Is there any way I can fix this drastic difference in rendering?

share|improve this question
1  
This has been an issue for quite a while. I still don't know what causes it: stackoverflow.com/questions/11167516/… – BoltClock Oct 21 '12 at 18:03

1 Answer

Instead of writing box-shadow alone try something like this

-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.3); 
-moz-box-shadow:    0px 1px 3px rgba(0,0,0,0.3); 
box-shadow:         0px 1px 3px rgba(0,0,0,0.3); 
share|improve this answer
3  
That's exactly the same as writing box-shadow alone on Chrome 22 and Firefox 16. Useless. – BoltClock Oct 21 '12 at 17:54
This makes a difference webkit -- chrome and -moz -- firefox. I am sure that this will help you – Aman Chhabra Oct 21 '12 at 17:58
1  
No it won't make a difference because you have box-shadow at the end. – BoltClock Oct 21 '12 at 18:00
but browsers does not support css3 completely so we have to use these prefix to make them work correctly – Aman Chhabra Oct 21 '12 at 18:01
4  
You did not read the question at all. – BoltClock Oct 21 '12 at 18:02
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.