- From: Diederik <j.dehaas14@chello.nl>
- Date: Sun, 23 Jun 2002 17:48:28 -0400 (EDT)
- To: <site-comments@w3.org>
- Cc: <sager_svend@hotmail.com>
Hello Svend, Here is what's 'wrong': 2. Height has to do with lay-out and you should put those things in CSS. If you replace 'height="100%"' with 'style="height: 100%;"' it should work fine. 3. & 4. The validator parses your document. Entities start with '&' and end with ';'. Whenever the parser encounters a '&', it thinks that the next part (up to the next delimeter) is the entity, although in this case it doesn't end with ';'. Therefor it says it's an unknown identity. You can do 2 things: - Ignore it, since it does work in all the browsers I test with, and it's not faulty syntax. - Replace the '&' with '&', then it should validate and it works in all the browsers. Regards, Diederik www.diederik.net ==== Previous msg ==== 2. I run my site, http://sk.lir.dk/e-skapehp/ , through your HTML validator, and I got an error for my site as following: ^^ Line 17, column 28: <TABLE CLASS="back" height="100%" CELLSPACING="15"> ^ Error: there is no attribute "HEIGHT" for this element (in this HTML version) ^^ Well... If i remove it, then the table does not reach the bottom of the screen, so it must exist, right??? 3. Still q's about the validator, here goes: (It's a mailto:-link) ^^ Line 76, column 50: ... ring; din hjemmeside "e-SKape HomePage"&body=Hej over-s&osla ... ^ Error: unknown entity "body" ^^ Works fine for me... A click on the link opens a email messages with text in the To:, the Subject and the Body field... so the entity "body" is just unknown to your validator, or...? 4. Validator still: ^^ Line 85, column 50: ... tp://www.dr.dk/nav/netplayer/player.asp?station=1&venstre=true">DR P1< ... ^ Error: unknown entity "venstre" ^^ Off cause it's onknown to the validator, it's a variable on http://www.dr.dk ... ==== End previous msg ====
Received on Sunday, 23 June 2002 21:37:35 UTC