Hallo,
bei folgender Datei wird bei mir (WinXP, IE 6.0) die zweite Liste nicht als Liste gezeigt. Nehme ich das CSS-Format für p:first-letter weg, so funzt es. Wer weiß, woran das liegt und noch besser, wie ich das lösen kann?
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>>head><title>Test</title>
<style type="text/css">
<!--
p:first-letter { color:red; }
-->
</style>
</head>
<body>
<p>Aufzählung 1</p>
<ul>
<li>1</li>
<li>2</li>
</ul>
<p>Aufzählung 2</p>
<ul>
<li>a</li>
<li>b</li>
</ul>
</body>
</html>
Danke für eure Hilfe.
Gruß, André