- From: Lars Trieloff <lars@trieloff.net>
- Date: Thu, 10 Jan 2002 16:43:44 -0500 (EST)
- To: <www-validator@w3.org>
Hello, I don't know if it was already mentioned in this list, but the html sniplet you get after validating al valid xhtml strict file is following: ---------- <p> <a href="http://validator.w3.org/check/referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a> </p> ---------- but this is not valid xhtml strict because <img /> contains the presentation attributes height and width. It would be easy to replace this by ---------- <p> <a href="http://validator.w3.org/check/referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" style="height:31;width:88;" /></a> </p> ---------- with best regards Lars Trieloff
Received on Monday, 14 January 2002 00:46:22 UTC