Gunnar Bittersmann: MSIE: bestimmte tags im div formatieren

Beitrag lesen

Ashura,

Ich meinte nur, dass es nicht mehr erlaubt ist, Elemente wie <input /> _direkt_ in das <form></form> Element zu schreiben.

<!ELEMENT form %form.content;>   <!-- forms shouldn't be nested -->
ist für Strict und Transitional gleich, aber

Strict:
<!ENTITY % form.content "(%block; | %misc;)*">

Transitional:
<!ENTITY % form.content "(#PCDATA | %block; | %inline; | %misc;)*">

Und mit XHTML hat das auch nichts zu tun; entsprechendes gilt auch für HTML 4.01 Strict vs. Transitional.

Gunnar

--
I never intended HTML source code (the stuff with the angle brackets) to be seen by users. […] To my surprise, people quickly became familiar with the tags and started writing their own HTML documents directly. (Tim Berners-Lee in Weaving the Web)