Du solltest etwas mehr über CSS lesen und vor allem probieren!
Nehme mal folgenden Code und Teste das. Du wirst sehen, das es geht.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style type="text/css">
<!--
body {
background-color:#FFFFFF;
margin: 0px;
}
p {
text-align:center;
}
.fliestext a:link, .fliestext a:visited, .fliestext a:active {
font-family:Verdana, Helvetica, sans-serif;
font-size:0.8em;
font-style:normal;
font-weight:normal;
color: #821515;
text-decoration:none;
border-bottom-width:thin;
border-bottomcolor:#821515;
border-bottom-style:dotted;
}
.fliestext a:hover {
color:#000000;
border-bottom-color:#000000;
}
.flies a:link, .flies a:visited, .flies a:active {
font-family:Verdana, Helvetica, sans-serif;
font-size:0.8em;
font-style:normal;
font-weight:normal;
color:#821515;
text-decoration:none;
border-bottom-width:thin;
border-bottom-color:#821515;
border-bottom-style:dashed;
}
.flies a:hover {
color:#000000;
border-bottom-color:#000000;
}
//-->
</style>
<title>Test</title>
</head>
<body>
<br />
<p class="fliestext"><a href="#">Warum unterstreicht der IE den Link nich von oben bis unten?</a></p>
<br />
<p class="flies"><a href="#">Warum unterstreicht der IE den Link nich von oben bis unten?</a></p>
</body>
</html>