<!-- 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)
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 11/06/2010, last modified the 04/10/2024
Source of the printed document:https://www.gaudry.be/en/raz-le-brol-rf-paragraphe-w3c.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.