5568 sujets

Sémantique web et HTML

bonjour

j'ai un petit souci pour valider en " XHTML 1.0 Transitional " avec le code suivant:
<td width="100%">
<form name="mygallery" action=""><p>
<select name="picture" size="1" onchange="showimage()">
<option selected value="../images/divers/logo_grisnoir.jpg">logo</option>


message d'erreur du validateur w3c:
a écrit :
Error Line 230, column 22: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified .

<option selected value="../images/divers/logo_grisnoir.jpg">logo</option>

"VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...


si quelqu'un a une idée...

merci beaucoup
Modifié par mussara (23 Nov 2005 - 18:33)
merci beaucoup... je n'avais pas appliqué la solution proposée par le validateur car je ne comprenais pas que selected était un tag de option...

merci de m'avoir éclairé...