Click to See Complete Forum and Search --> : css validation


bobmurphy
08-29-2003, 05:36 PM
how do i validate a css page - i tried the one on www.w3c.org and it gave me a parse error (unrecognised) <STYLE TYPE="text/css">
am i doing something wrong ???

also i am getting errors in the bottom right of IE - yet my html validated - does anyone know what this could be or how to trace the errors

Charles
08-29-2003, 05:51 PM
Post the URL please.

bobmurphy
08-29-2003, 07:47 PM
its

http://www.oneweekofdays.com/testerfolder/master/masterStyleSheet.css

the html using it is :

http://www.oneweekofdays.com/testerfolder/master/index.html

Charles
08-29-2003, 08:59 PM
It's as I feared. You've confused HTML with CSS. You need to remove all of the HTML stuff from the CSS file, id est the STYLE tags and the HTML style comments. CSS uses C style comments( /* */ ).

bobmurphy
08-30-2003, 03:55 AM
thanks - i will try that