I am thinking about relying on box-shadow , but it is different in different ways even on Firefox and Chrome / Chromium. The difference is very subtle with low values, but very noticeable with large ones.
In this example , you can see that differences occur when using negative values โโto reduce the shadow. The left render is Chromium 25, and the right render is Firefox 21.
HTML:
<div> Hello there! </div>
CSS
div{ margin:100px; padding:100px; border:1px solid red; box-shadow:0 80px 15px -85px #000; }

How can I solve this problem? Or maybe now I should abandon box-shadow ?
source share