webkit - Valid CSS with new properties -
I am using some CSS tricks to promote the applicability / presence of my site in WebKit Browser. Two main ones: text-shadow
and resize: none
(on textures - to prevent that annoying page-breaking resize option in Safari and others).
The problem is that when I run my page through the W3 validator, I get lots of:
Property text-cache is not present in CSS level 2.1, But exists in: # feb4b4 1px 1px 0 # feb4b4 1px 1px 0
- and -
The property size is not present in the CSS level 2.1 But it exists in: None:
Is this not really valid? Am I really not supposed to use it, or is there any error in ignoring it?
text-source
property is a CSS3 property. If you choose CSS Level 3 from the advanced options of the W3 CSS Validator service, then it should come properly. It was also in CSS level 2, but dropped for CSS level 2.1
Comments
Post a Comment