<!-- Raz le brol -->
Le 11/06/2010 : Paragraphes et listes à puces
Je ne comprends pas du tout les organismes de validation du Web à propos de la manière de structurer les documents à l'aide des paragraphes et des listes (listes à puces ou listes numérotées).Je pense que l'énumération d'un certain nombres d'éléments peut se justifier au sein d'un paragraphe, hors cela semble formellement interdit. Selon les normes, je devrais écrire ceci :
Code HTML (29 lignes)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <head> <meta http-equiv="Content-type" content="text/html;charset=UTF-8" /> </head> <body> <p> Mon premier paragraphe. </p> <p> Mon deuxième paragraphe qui contient : </p> <ul> </ul> <p> et aussi : </p> <ol> </ol> <p> Que faire ? </p> </body> </html>
Résultat de la validation
CongratulationsThe uploaded document was successfully checked as XHTML 1.0 Strict.
This means that the resource in question identified itself as "XHTML 1.0 Strict" and that we successfully performed a formal validation using an SGML, HTML5 and/or XML Parser(s) (depending on the markup language used).
Cet exemple est donc valide, mais ne me convient pas du tout au niveau sémantique, car j'estime que les listes font partie d'un bloc qui est représenté par le paragraphe.
J'aimerais pouvoir écrire ceci :
Code HTML (25 lignes)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <head> <meta http-equiv="Content-type" content="text/html;charset=UTF-8" /> </head> <body> <p> Mon premier paragraphe. </p> <p> Mon deuxième paragraphe qui contient : <ul> </ul> et aussi : <ol> </ol> Que faire&nnbsp;? </p> </body> </html>
Echec de la validation
# ErrorLine 14, Column 6:document type does not allow element "ul" here; missing one of "object", "ins", "del", "map", "button" start-tag
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").
Tout ça sans parler de l'espace insécable fin qui devrait se trouver entre le dernier mot et le point d'interrogation, et qui n'est toujours pas utilisé à l'heure actuelle.
Et donc je suis de très mauvais humeur...
« Raz-le-Brol... »
- Accueil
- Raz le brol du 07/03/2011 (override-interface)
- Raz le brol du 13/06/2010 (mathml)
- Raz le brol du 11/06/2010 (paragraphe-w3c)
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2010, zuletzt geändert 04/10/2024
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/raz-le-brol-rf-paragraphe-w3c.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.