I'm trying the use a background graident on my menu bar. I'm using:
The error console of Firefox picks up on the last two lines. The webkit one and the filter one. Can anyone tell me what I'm doing wrong please?
Code:
.mainmenu{
background-color: #25abec;
background-image:-moz-linear-gradient(top,#25abec,#1984b8);
background-image:-webkit-gradient(linear,left top,left bottom,from(#25abec),to(#1984b8));
filter:progid:DXImageTransform.Microsoft.Gradient(startColorStr=#25abec,endColorStr=#1984b8);
}
Comment