i use this as a background bar ... repeated of course
http://www.freeimagehosting.net/uploads/3c2f75b680.gif
and i want to replace that with simple CSS Gradient color without image ...so i searched all over the internet and i found this:
filter:progid:DXImageTransform.Microsoft.Gradient(endColorstr='#ffffff' ,startColorstr='#000000' , gradientType='0');
, but this is not enough .. then i searched in StackOverFlow.com and i found this ,very close to my question..
first i opened this , but the examples didn't show any gradient with me(it appears just text .. and there is no gradient)...
then i opened this, and i have been trying this:
linear-gradient(top, yellow, blue 20%, #0f0);
on div:
<div style="width: 633px; height: 268px; background:linear-gradient(top, yellow, blue 20%, #0f0);">
</div>
didn't work also...
i check out the photoshop and i sow somethign in gradient called "Opacity Midpoint".. is it avalible in CSS .. if it is , how to use it?
in
filter:progid:DXImageTransform.Microsoft.Gradient(endColorstr='#ffffff' ,startColorstr='#000000' , gradientType='0');
how to put a limit for the startColorstr?how to use
linear-gradient(top, yellow, blue 20%, #0f0);
andradial-gradient(bottom left, farthest-side, red, yellow 50px, green);
in CSS?
*note:*one simple good answer would be OK , but i would like to know all of these ... thanks