5568 sujets

Sémantique web et HTML

salut tous le monde Smiley smile
je cherche l'équivalent en css de :

 <table cellpadding="0" cellspacing="0" border="0" height="79">
<tr>


et aussi de :

 <table cellpadding="0" cellspacing="0" border="1" width="187" height="228" bordercolor="#FFFFFF" style="border-collapse: collapse">


merci
Modifié par maria25 (21 Oct 2008 - 16:57)
salut j'ai un probléme quand je valide mon site il me donne une erreur concernant ces deux code ..
alors j'ai pensé de les mettre en css..
un coup de main svp
maria25 a écrit :
salut j'ai un probléme quand je valide mon site il me donne une erreur concernant ces deux code ..
alors j'ai pensé de les mettre en css..

Oui mais quelle partie des codes pose problème? Quels attributs, par exemple?

Tu ne peux pas passer une balise complète (balise ouvrante d'un tableau) en CSS, les CSS c'est de la mise en forme et à priori si tu as un tableau c'est que tu as des contenus pertinents pour aller dans ce tableau, non?

(Réviser ou apprendre les bases de XHTML si elles ne sont pas bien connues serait un plus. Smiley cligne )
Modifié par Florent V. (21 Oct 2008 - 21:28)
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"

&#9993;

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.


le deuxiéme erreur : Line 44, Column 87: there is no attribute "BORDERCOLOR".

width="187" height="228" bordercolor="#FFFFFF" style="border-collapse: collap

&#9993;

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.

Modifié par maria25 (21 Oct 2008 - 21:44)
Attribut HTML height pour un tableau: utiliser la propriété du même nom height en CSS.
Attribut HTML bordercolor pour un tableau: utiliser la propriété border-color ou directement border en CSS.

(Bien sûr, ma réponse suppose que les bases de HTML et CSS sont connues, que l'on sait comment créer ou modifier une feuille de styles externe, et appliquer des styles CSS à un élément précis dans la page. Si cela n'est pas clair, il faut de toute urgence réviser les bases.)