CSS HTML Line Appearing On Div :active
OK, I had a series of divs set up to work as navigation bar images that would highlight and become active on upon click:
Solution 2:
This should set all of your link option to no decoration
<style>
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
</style>
<td><div class="navbright" style="border:none"><a href="http://www.x.com"><img src="/images/Home.jpg" alt="" width="200" style="border:none"></a></div></td>
Post a Comment for "CSS HTML Line Appearing On Div :active"