To add box-shadow to a HTML element, I currently have to do this:
box-shadow: 2px 2px 3px #969696;
-moz-box-shadow: 2px 2px 3px #969696;
-webkit-box-shadow: 2px 2px 3px #969696;
filter: progid:DXImageTransform.Microsoft.Shadow(color='#969696', Direction=145, Strength=3);
At this point, it seems to me that this amount of code for a simple gradient is ridiculous at this stage of the web. Not to mention the maintenance time- if I want to change the color, I have to change it four times for each vendor prefix. (This also applies for things like CSS3 Gradients).
What's a better, more optimized way for handling this simply? I'm aware there are large non-standard fixes like CSS3 Pie, but in my experience, they take forever to load and I still have to write code for Firefox & Webkit. Do I need to resort to server-side code to do this? I'm just really frustrated working with redundant awkward-looking code.
<!--If IEtags makes me think standard is not what they're going for. D=< – CAPSLOCK Mar 18 '11 at 1:59box-shadow: 2px 2px 3px #969696;which is likely the one that will end up in the standard, and some browser already support it and the page will look fine. Browsers that don't support it yet will have a less appealing looking page, which in turn might convince the user to switch to a more advanced Browser. It's the most sane approach from the programmer's point of view, I wonder whether your client will agree with this though. :) – Bazzz Mar 18 '11 at 7:48