I use the webkit/mozilla border radius and box shadow CSS properties, but I want the CSS to validate (which it currently does not). Is there a way to get it to validate?
|
|
No, they are browser specific properties, and not defined in the standard CSS specification. That being said, they correctly follow the rules for vendor specific extension of CSS. It's just not in the W3C official CSS specification. |
|||||||||||
|
|
Although the syntax for vendor extensions is mentioned in the CSS3 Syntax module and introduced into the grammar to allow vendors to implement their own prefixes ignoring the standard, the actual vendor extensions themselves are not recognized as official CSS properties. This is not going to change, as they're proprietary and specific to the vendors that invent and use them. However, a recent enhancement (early 2011) to the Jigsaw W3C CSS Validator makes it possible to reduce validation errors triggered by vendor extensions to warnings. Find this new option among other such as the level of CSS to validate against by expanding the More Options section:
This makes it easier to find the real problems with your stylesheet if it still doesn't validate. If vendor extensions are the only things triggering errors, turning them into warnings will allow your stylesheet to validate tentatively. It also eliminates the need to maintain vendor extensions in a separate stylesheet that you have to hide from the validator. Warnings are the furthest you can shy away from errors, though, as ultimately, vendor prefixes are still non-standard and therefore technically invalid CSS. |
||||
|
|
|
It partly possible. Collect all your unsupported css classes in one file (css3.css) Example: css3.css
default.css
page.html
Search engine don't run client scripts, so your W3C unsupported attributes will not damage your SEO. As for green css validation, sorry, not yet. |
|||||
|
|
No, as they are not part of the standard the validator validates against. The only solution that comes to mind is to put the incompatible properties into a separate style sheet. |
|||
|
|
|
The Mozilla and WebKit specific properties will not validate. What you can do is separate your "enriched" css into a separate style sheet. Just like you separate your ie hack styles out of your main style sheet. This way your base style sheets will validate. |
|||
|
|
|
If you use a separate CSS file for my "invalid" or "browser-specific" CSS then use a little PHP to filter out that CSS from the validator:
Then link to the validator with CSS3 as the profile (accepts border-radius, text-shadow, etc.):
$_SERVER['HTTP_HOST'] doesn't work but perhaps there is something that will? 12-12-2011Kami really posted the best solution. I create a separate css3.js file and document.write(''); the CSS line by line: CSS3.js
|
|||||
|
|
@BoltClock is TOTALLY right on this one... W3C has indeed added a
for example... if you wanted to edit the CSS validator command in TextMate... you would "Edit Bundles...", aka
to - something - more along the likes of
Notice that I also added a If you want to see all the parameters that are available via the "online" submit mechanism.... open up Firebug, or the Webkit inspector, etc.. while submitting a query via their form and check out the
|
||||
|
|
protected by Community♦ Dec 12 '11 at 6:29
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

