Re: Gradients in CSS3?

Ben Ward wrote:
>>There's one problem with all this by the way: in most cases, it isn't
>>incrementally renderable.
> 
> OK, my brain's gone like butter. Could you possibly slap up a quick
> example of the problem that I can look at when I get home. I'm pretty
> sure I know what you're getting at but would like to be sure! Thanks.

   He means that if the gradient is a function and it's not supported,
then you could end up with a situation where no color is specified.
Pretty easy to get around, though:

| background-color: blue;
| background-color: gradient(blue, red, 90deg);

Received on Monday, 15 August 2005 18:26:02 UTC