infotun Posté 21 Octobre 2008 Posté 21 Octobre 2008 (modifié) salut j'ai un probléme quand j'essai de valider mon site . voici l'erreur afficher par le validator ( l'erreur c height="79"> : Line 39, Column 57: there is no attribute "HEIGHT" ) Line 37, Column 57: there is no attribute "HEIGHT"....0" cellspacing="0" border="0" height="79"><tr><td width="185" class="bandeau"✉You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash. merci Modifié 21 Octobre 2008 par infotun
captain_torche Posté 21 Octobre 2008 Posté 21 Octobre 2008 C'est pourtant simple; ça te dit textuellement que l'attribut height n'existe pas. J'imagine que tu utilises un doctype XHTML ?
infotun Posté 21 Octobre 2008 Auteur Posté 21 Octobre 2008 (modifié) non je n'utilise pas de doctype dans mon code dans le validator il a choisi automatiquement :Doctype: HTML 4.01 Transitional j'ai essayer de trouver un equivalent a mon code en css mais je ne trouve pas. mon code et : <table cellpadding="0" cellspacing="0" border="0" height="79"> Modifié 21 Octobre 2008 par infotun
Dudu Posté 22 Octobre 2008 Posté 22 Octobre 2008 Et surtout essaie de spécifier un doctype: c'est la PREMIÈRE chose à écrire sur une page, et c'est obligatoire. Passer une page sans doctype au validateur, c'est un peu comme si tu demandais un audit de conformité de ta maison mais que ta maison n'ait pas de fondations. C'est à peu près aussi absurde que ça Pour déterminer la hauteur de ta table en CSS, écris ceci dans ton fichier .css table {height: 79px;} Une remarque quand même: n'utilises pas ce code si tu as plusieurs tables de hauteur différentes. Si tu es dans ce cas, il te faudra faire deux choses: la première, donner un identifiant à ta table par l'attribut "id <table id="exemple"> la deuxième, cibler cette table-là et pas une autre dans le CSS comme ceci table#exemple {height: 79px;}
Sujets conseillés
Veuillez vous connecter pour commenter
Vous pourrez laisser un commentaire après vous êtes connecté.
Connectez-vous maintenant