including the 'border-radius: num1 / num2;' property gives a '/ is an incorrect operator' error. any way to get this to validate?
+1
A:
Are you validating against 2.1 or 3? http://jigsaw.w3.org/css-validator/ If you click on the More you can change the profile to CSS 3
LostInQuery
2010-08-30 08:34:57
Yes, it is validating against CSS3 and failing.
Chris Bolton
2010-08-31 00:59:05
A:
Take the '/' out. Instead of;
{border-radius: 1px / 2px;}
Do this;
{border-radius: 2px;}
That is the proper way to define border radius.
When in doubt, try http://border-radius.com/
Josiah Sprague
2010-08-31 17:13:18