von Woyciechowski[nixkönner] am 03.03.2007, 17:00
<style type="text/css">
<!--
a { text-decoration: none}
a:hover { text-decoration: underline}
-->
</style>
<body bgcolor="#FFFFFF" text="#000000">
<a href="#">Hyperlink</a>
Füge diesen text einfach in dein head tag ein. Das Script sagt, unterstreiche alle mit a, also für a href link, wenn maus darüber erscheint.
Lg NiXi
Beispiel:
<html>
<head>
<title>Link unterstrichen</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
a { text-decoration: none}
a:hover { text-decoration: underline}
-->
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<a href="#">Hyperlink</a>
</body>
</html>