<!-- 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)
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2010 gemaakt, de laatste keer de 04/10/2024 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/raz-le-brol-rf-paragraphe-w3c.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.