Hallo,
Nun macht man es also brav validator-gerecht
und bekommt es vom Internet Explorer durch falsche
darstellung gedankt:
Nur vom IE? Die Darstellung ist nämlich korrekt.
Was Du gemacht hast, sieht so aus:
<ul>
<li>Depth 1</li>
<li>hier beginnt ein neuer PUNKT
<ul>
<li>Depth 2</li>
<li>hier beginnt ein neuer PUNKT
<ul>
<li>Depth 3</li>
</ul>
</li>
</ul>
</li>
</ul>
Was Du willst, sieht so aus:
<ul>
<li>Depth 1
<ul><!--Die Liste _gehört_ zu Depth 1-->
<li>Depth 2
<ul><!--Die Liste _gehört_ zu Depth 2-->
<li>Depth 3</li>
</ul>
</li>
</ul>
</li>
</ul>
viele Grüße
Axel