Bug in the code to get the CSS Validation badge.

The image tag in the code to get the CSS Badge is not self-closed. 

 

<a href="http://jigsaw.w3.org/css-validator/">

  <img style="border:0;width:88px;height:31px"

       src="http://jigsaw.w3.org/css-validator/images/vcss" 

       alt="Valid CSS!">

 </a>

 

This means that if you add the code to show your CSS validates, your XHTML
1.0 now longer does. 

 

The code, should read 

 

<a href="http://jigsaw.w3.org/css-validator/">

  <img style="border:0;width:88px;height:31px"

       src="http://jigsaw.w3.org/css-validator/images/vcss" 

       alt="Valid CSS!" />

 </a>

 

Regards,

 

Harald Wilke

 

Received on Tuesday, 24 August 2004 12:38:59 UTC