Bonjour,
Pas vraiment un bug, je suppose, car mon browser affiche correctement la page, mais en jetant un oeil au code HTML de la page d'accueil (https://www.developpez.com/), je constate qu'il y a cela en plein milieu du 'body' de la page:
Pas vraiment aux normes, à priori, car le W3C Validator n'est pas content du tout:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6 <!doctype html><head><style type="text/css">html, body { margin: 0; padding: 0; }</style></head><body> <div onclick="window.open('https://www.developpez.com/redirect/1979')" style="color: #577F99; font-family: Verdana, sans-serif; width: 726px; height: 88px; background: #DCE2E4; text-align: center; cursor: pointer; border-radius: 10px; border: 1px solid #5781A5"> <h1 style="margin: 0; padding: 2px 0 2px 0; font-size: 16pt; background: #ACBFCB; border-radius: 10px 10px 0 0">Developpez.com</h1> <p style="margin: 5px 15px 0 15px; padding: 0; font-size: 14pt">Télécharger gratuitement le <strong>magazine des développeurs</strong>, le bimestriel des développeurs avec une sélection des meilleurs tutoriels </div> </body></html>
- Error: Stray doctype.
- Error: Stray start tag head.
- Error: Stray end tag head.
- Error: Start tag body seen but an element of the same type was already open.
- Error: End tag for body seen, but there were unclosed elements.
- Error: Unclosed element div.
- etc...
https://validator.w3.org/nu/?doc=htt...eloppez.com%2F
Partager