This is not a question, but just a rant. Or maybe a question... or maybe I just don't know much about box shadows..
In order to use box shadows in CSS3 in different browsers, here what I have to do:
-webkit-box-shadow: 0px 0px 10px #676767;
-moz-box-shadow: 0px 0px 10px #676767;
box-shadow: 0px 0px 10px #676767;
Is there anyone else finding this incredibly stupid in order for Firefox, Opera and Safari/Chrome/Webkit to work? And it will not even work in IE at all!
Is there anything I can do to reduce the duplicated CSS values?
Thanks, badallen