• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

fehlermeldung html validator

Status
Für weitere Antworten geschlossen.

fellfresse

Neues Mitglied
bekomme beim html validator folgende fehlermeldung:

Line 49 column 17: document type does not allow element "HR" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag.

<hr id= "line">



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 "

" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").

die zeilen im zusammenhang:
Code:
45<div class= "inhalt_middle">
46  <h2>
47    <span class= "markant2">AGB</span>

48    <span class= "markant">Allgemeine Gesch&auml;ftsbedingungen</span>

49    <hr id= "line">


50  </h2>
51</div>

mein:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

was kann ich da machen?
 
hr darf als block element dort nicht vorkommen.
in einem element vom typ heading dürfen nur inline elemente stehen.
 
fellfresse schrieb:
Dann hast du einen anderen Fehler!
Alle Tabellenlosen Designs bauen auf Divs auf und es gibt dort unzählige Seiten die innerhalb dieser Divs auch Linien (HR) einsetzen. Vielleicht solltest du mal deine Seite hochladen damit wir uns die anschauen können. ;)
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben