Leerzeile bei Aufzählung und Numerierung
Verfasst: Mo, 15.02.2010 16:43
Wenn ich folgende html-Datei einlese, wird vor der numerieten Liste eine Leerzeile eigefügt. Die css Anweisung wird vom Writer ignoriert.
<html>
<head><style type="text/css">ol {margin-top:0px;}</style></head>
<body>
aaa bbb ccc ddd eee fff ggg
<br>
ppppp:
<ol>
<li>xxx</li>
<li>yyy</li>
</ol>
</body>
</html>
Wie vermeide ich die Leerzeile zwischen dem Text ppppp und der ersten Listenzeile?
<html>
<head><style type="text/css">ol {margin-top:0px;}</style></head>
<body>
aaa bbb ccc ddd eee fff ggg
<br>
ppppp:
<ol>
<li>xxx</li>
<li>yyy</li>
</ol>
</body>
</html>
Wie vermeide ich die Leerzeile zwischen dem Text ppppp und der ersten Listenzeile?