i have been having a little bit of difficulty with getting IE browsers to show linear gradients.
this is the code that i have used so far:
this is the furthest i have got i would appriciate any help that you could possibly give me.
this is the code that i have used so far:
Code:
#rightsidegradientbar
{
width:50px;
background-image: -webkit-gradient(
linear,
right bottom,
left bottom,
color-stop(0.1, #FFFFFF),
color-stop(0.78, #00CCCC),
color-stop(1, #00CCCC)
);
background-image: -moz-linear-gradient(
right center,
#FFFFFF 10%,
#00CCCC 78%,
#00CCCC 100%
);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#00CCCC');}
Comment