Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CSS3 - Validator - RGBA wrong?

Tags:

css

rgb

I'm using the W3C CSS Validator with the Profile CSS3 but the validator says that my CSS rgba()'s are wrong.

I looked up the Color Module Level 3, and the syntax is the same as mine.

I also tried the Dev-Validator, same result.

Example input:

div.class {
    border: 1px solid rgba(0, 0, 0, 0.5);
}

Am I wrong or why does the validator say that I have that many mistakes with rgba?

like image 630
Poru Avatar asked Mar 30 '10 13:03

Poru


2 Answers

Read this: http://www.css3.info/the-big-css3-validation-debate/ - Might help. Think that's it.

"The problem is that, at present, none of the CSS3 modules have yet receached the status of becoming an official W3C Recommendation, as such any of these specifications could in theory be changed at time, particularly those that are still in the early stage of development."

like image 90
dscher Avatar answered Oct 23 '22 06:10

dscher


This is a known bug (and I'm sure a patch would be welcome)

like image 31
Quentin Avatar answered Oct 23 '22 05:10

Quentin