Following is my css code:

table th{  font-family:arial; font-size:9pt;  color:#ffffff; background: -moz-linear-gradient(#b9cdde, #7c98ae);  border: 1px solid #ffffff; }

table th:last-child{  background: -moz-linear-gradient(#729cc3, #35699a); }

I get a validation error with CSS which says Value Error : background Too many values or values are not recognized : -moz-linear-gradient(#b9cdde,#7c98ae) -moz-linear-gradient(#b9cdde,#7c98ae)

Does someone have any idea as to why this might be happening?

Thanks in advance, S.

link|improve this question

50% accept rate
gradients are css3 properties – SRN Jun 16 '11 at 22:07
feedback

1 Answer

up vote 0 down vote accepted

Vendor-specific selectors such as -moz-linear-gradient are not part of the official CSS2 specification, so when the validator finds then, it will throw an error. Personally, I don't mind if stuff like this doesn't validate - it's only a nice, cleanly written gradient.

Also, please work on your accept rate - it gives us answering-type people more of a motivation to do what we like to do :-)

link|improve this answer
Thanks Jam for the immediate response. I am actually trying to import this particular CSS file which has other stuff as well into another tool called the BIRT for it to use. So, I am unable to import the file owing to those errors. Is there a way to resolve this which will help me import the file without any exceptions? Also, I will surely work on the my accept rate :) Thanks for pointing out. – reg_frenzy Jun 16 '11 at 22:09
It seems rather strange that BIRT is that strict. I can't really look into it, but is there possibly a setting that turns off the strict-ness. As an alternative, you could use a repeated gradient image as the background. It's not ideal, but at least it would work. – JamWaffles Jun 16 '11 at 22:15
Ya, I was considering that option as well. But there are a few other elements that are not being supported by the BIRT. One being this and the other being "last-child" property, both of which I am extensively using throughout. Turning off the strictness is an option that I would look into. Any other inputs would be appreciated. – reg_frenzy Jun 16 '11 at 22:37
1  
BIRT has two ways to add CSS: "Import CSS" and "Use CSS". If you use HTML output only, then "Use CSS" with "Include CSS file at view time" option could be more powerful and it shouldn't be restricted to BIRT-supported properties. – jinowolski Jun 17 '11 at 22:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.