CSS validation
This website takes advantage of HTML5 and CSS3 (which is currently still in development). In order to work in all modern browsers certain 'fixes' must be added to the CSS which W3C does not accept as valid CSS.
You can:
- validate the previous version of the CSS (level2)
- or validate the current version [NB. this fails only because of the additional fixes *].
* specifically this related to 'border-radius' - some browsers require additional code to render this feature correctly.
Example:
-moz-border-radius: 10px; -khtml-border-radius: 10px; border-radius: 10px;