Hallo,
Wie erreiche ich, dass die Liste uneingerückt(oben, unten, links) angezeigt wird?
grüße
thomas
------------
<html>
<head>
<title>Test 4</title>
<style type="text/css">
body {
margin:0px;
}
ul {
margin:0px;
padding:0px;
}
li {
list-style-type:none;
}
</style>
<!-- dies ist fuer Netscape 4.x -->
<style type="text/javascript">
with (tags.UL) {
marginLeft="-50px";
marginTop="-30px";
}
</style>
</head>
<body>
<ul>
<li>A_ithe iutherl uizh rtttttt</li>
<li>A_rtzertzertz</li>
<li>A_rtzrtzr rzz</li>
<li>A_tzqzqez</li>
</ul>
</body>
</html>