I have this class set for a page im testing (just starting to try to implement CSS3 so go easy on me).
.CSS3TESTDIV{
width:228px;
height:300px;
background-color: #fff3;
background-image: -moz-linear-gradient(0% 100% 90deg, #0068b3, #fff);
background-image: -webkit-gradient(linear, 0% 100%, 0% 0%, from(#fff), to(#0068b3));
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border: 1px solid #0068b3;
padding: 10px;
margin:0 10px 0 0;
-moz-box-shadow: 7px 7px 7px #888;
-webkid-box-shadow: 7px 7px 7px #888;
box-shadow: 7px 7x 7px #888;
float:left;
}
Everything looks good in FF (on pc) and FF on a Mac, i know that IE does not suppor this.
My question is about the gradient... from what i have above the gradient is fairly smooth, but i just want a little of the blue to creep up from the bottom...not fade up as high as i see it on my browswer, and i have played with the percentages, and values but i cant really seem to make it the way i want...
How can i get the effect im looking for?
Again, i want mostly white from top to bottom, and just a little of the blue at the bottom fading up. thanks