Page 1 of 1
CSS Problem.
Posted: Thu May 20, 2004 4:15 pm
by houndbee
My CSS does not validate because of this line in the standard template's CSS.
Code: Select all
-moz-border-radius: .0em 0em 1em 1em;
Is there a way to achieve this by using standard CSS tags and not browser specific tags?
Re: CSS Problem.
Posted: Fri May 21, 2004 11:41 am
by garvinhicking
houndbee wrote:My CSS does not validate because of this line in the standard template's CSS.
Code: Select all
-moz-border-radius: .0em 0em 1em 1em;
Is there a way to achieve this by using standard CSS tags and not browser specific tags?
It could be achieved by 'emigrating' the -moz-code to a seperate file and then importing it via JavaScript. This way it would be hidden from the validator, but that's still not the core problem.
The core problem is that browser-devs have used a CSS-incompatible way of specifiying their attributes. IMHO either browsers need to change it or the CSS validator needs to pay regards to that definition...
Regards,
Garvin.
Re: CSS Problem.
Posted: Tue Aug 03, 2004 10:26 pm
by houndbee
garvinhicking wrote:It could be achieved by 'emigrating' the -moz-code to a seperate file and then importing it via JavaScript. This way it would be hidden from the validator, but that's still not the core problem.
Garv, How would I do this? I tried a couple of methods but couldn't quite figure it out.
