- From: olivier Thereaux <ot@w3.org>
- Date: Wed, 11 Jan 2006 15:54:19 +0900
- To: <jensenaxel@hotmail.com> <jensenaxel@hotmail.com>
- Cc: <www-validator@w3.org>
On 10 Jan 2006, at 22:08, <jensenaxel@hotmail.com> <jensenaxel@hotmail.com> wrote: > I get this result in checking the URL > http://www.affiliate.cyberklon.com > Line 54 column 84: end tag for "B" omitted, but its declaration > does not permit this... The actual problem here, which the validator is trying to point out with the limitations of its parsing method, is that your tags are not nested properly. Note that the marker for the error is on the </div>. The validator, here, is telling you "hey, you're closing the <div>, but you have not closed the <b> that was in the <div>. In some languages that's ok to close it implicitely, but here it's not. Just move the </b> before the </div> and the error should go away. regards, -- olivier
Received on Wednesday, 11 January 2006 06:54:50 UTC