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><divclass="navbright"style="border:none"><ahref="http://www.x.com"><imgsrc="/images/Home.jpg"alt=""width="200"style="border:none"></a></div></td>
Post a Comment for "Css Html Line Appearing On Div :active"