Is is possible to define a background with a gradient from blue to white with CSS?
Printable View
Is is possible to define a background with a gradient from blue to white with CSS?
http://www.endamcg.com/main/guides/c...al-filters.htmQuote:
Alpha Filter
CSS Code Example:
<span style="FILTER: Alpha(Opacity=80, FinishOpacity=70, Style=2); font-size:20pt;">Alpha Filter</span>
Result:
Alpha Filter
Possible Parameters:
Opacity 0 (fully transparent) - 100 (fully opaque)
Finishopacity 0 (fully transparent) - 100 (fully opaque)
Style shape characteristics of opacity gradient. 0 (uniform), 1 (linear), 2 (radial), 3 (rectangular)
startX X coordinate for opacity gradient to start
startY Y coordinate for opacity gradient to start
finishX X coordinate for opacity gradient to end
finishY Y coordinate for opacity gradient to end
I only think that these filters are used for the font color. I need to make a background that goes from #efefef to white. I don't think I can use this filter for this, or am I wrong?
With standard CSS it's definately not possible. Maybe CSS 3 will have some gradient support, but taking a quick look at the working draft of the colour module I couldn't see anything I'm afraid :(
Then why not use an image as the background?