- From: Philip Pawley <philip@alexanderworks.org>
- Date: Fri, 31 Aug 2001 18:05:17 +0100
- To: www-validator-css@w3.org
Received on Friday, 31 August 2001 13:06:07 UTC
There is a little bug:-
I used the text-area to check a css rule:-
table[width=189].nav { width:181px; }
and got:-
Parse Error - =189].nav
I added quotation marks:-
table[width="189"].nav { width:181px; }
and got:-
No error or warning found
To work as intended, your CSS style sheet needs a correct document parse tree. This means you should use valid HTML.
Valid CSS informations
table[width=189].nav {
width : 181px;
}
which is precisely what I entered the first time!
Thanks,
--
Philip Pawley
Liverpool, UK
http://www.alexanderworks.org/
--
Received on Friday, 31 August 2001 13:06:07 UTC