[css-d] How Important is CSS Validation?

2010-03-02 Thread Elli Vizcaino
I'm posing this question because there are some CSS 3 properties that are in 
use in a wordpress plugin (sociable) stylesheet and of course it doesn't 
validate. There are also some proprietary opacity properties being used to 
target IE and older gecko browsers, which I can remove. I guess I could also 
remove the CSS3 opacity property as well but I actually like the effect. 

You can view here: http://keithkemper.net/uncategorized/the-joint-is-jumping/ 
hover social icons to see. 

What is the general consensus with regards to CSS validation? I'm really 
inclined to leave the opacity effect in. 


TIA, 
Elli 


  
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] How Important is CSS Validation?

2010-03-02 Thread Climis, Tim
 What is the general consensus with regards to CSS validation? I'm really 
 inclined to leave the opacity effect in. 

Validation of CSS is great for finding misspelled properties, bad values, 
missing semi-colons, etc, but hacks, proprietary properties, and CSS 3 stuff is 
fine (or even necessary) to have even though it, by definition, will not 
validate.

Invalid CSS is not nearly as much of a problem child as invalid markup.

---Tim
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] How Important is CSS Validation?

2010-03-02 Thread Felix Miata
On 2010/03/02 07:45 (GMT-0800) Elli Vizcaino composed:

 I'm posing this question because there are some CSS 3 properties that are
 in use in a wordpress plugin (sociable) stylesheet and of course it
 doesn't validate. There are also some proprietary opacity properties being
 used to target IE and older gecko browsers, which I can remove. I guess I
 could also remove the CSS3 opacity property as well but I actually like
 the effect.

 What is the general consensus with regards to CSS validation? I'm really
 inclined to leave the opacity effect in.

Which CSS spec to validate against is selectable:
http://jigsaw.w3.org/css-validator/#validate_by_uri+with_options

You can put proprietary rules in an imported sheet for separate validation
consideration, leaving your main sheet(s) able to pass.
-- 
Our Constitution was made only for a moral and religious
people. It is wholly inadequate to the government of any
other.  John Adams, 2nd US President

 Team OS/2 ** Reg. Linux User #211409

Felix Miata  ***  http://fm.no-ip.com/
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/