Eduardo: Hyperlink Unterstrich soll weg ...

Hallo Besucher,

würd' gern mal wissen wie ich den Unterstrich bei einem Hyperlink wegbekomme (am Besten eine Variante mit CSS und eine irgendwie).

Vielen Dank
Aldo

  1. Hallo!

    <STYLE TYPE="text/css">
    <!--

    a:link { font-family:Arial; color:#ff0000; text-decoration:none; }
    a:visited { font-family:Arial; color:#ff0000; text-decoration:none; }
    a:active { font-family:Arial; color:#ff0000; text-decoration:none; }

    //-->
    </STYLE>

    Auf "text-decoration:none;" kommt es an ... "none"!

    1. Hallo!

      <STYLE TYPE="text/css">
      <!--

      a:link { font-family:Arial; color:#ff0000; text-decoration:none; }
      a:visited { font-family:Arial; color:#ff0000; text-decoration:none; }
      a:active { font-family:Arial; color:#ff0000; text-decoration:none; }

      //-->
      </STYLE>

      Auf "text-decoration:none;" kommt es an ... "none"!

      Wenn ich das ergänzen darf, es reicht auch
      einfach der Zusatz in
      den Hyperlink:
      <a href="z.B.www" style="text-decoration:none">Musterlink</a>,
      vielleicht für den, der noch nicht in
      cascading style sheets schreibt.

      Gruß
      Wolfgang