I am using this CSS code
Code:
a.navigation {
color: #99cc66;
background-color: #ffffff;
font: 8pt 'Verdana', Arial, Sans-serif;
font-weight: bold;
border-style: solid;
border-color: #666666;
border-left-width: 1px;
border-right-width: 0;
border-top-width: 0;
border-bottom-width: 0;
padding: 0 0 0 2px;
}
along with this html code
Code:
<a href="link.php" class="navigation">link</a>
It works fine in firefox, but in IE, the link follows the CSS for a:link. What's wrong with it??
|