manyak online: <ul>

Hallo,
Meine ungeordneten Listen:
<ul>
<li>...</li>
<li>...</li>
</ul>
Wie erreiche ich, dass die Liste uneingerückt(oben, unten, links) angezeigt wird?
Danke und Grüße, Manyak

  1. Hi

    mag jetzt nicht testen, ob margin:0px im body reicht, sonst setzt noch bei ul margin:0px und padding:0px

    also:
    body {
      margin:0px;
    }
    ul {
      margin:0px;
      padding:0px;
    }
    li {
      margin:0px;
      padding:0px;
    }

    ich weiss nciht genau, wie dus ausrichten willst...dann noch die einzeln li's....pass einfach die werte deinen wünschen an

    cu
      capior

  2. 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>