CSS:
<style>
text-decoration:none; //remove underline
text-decoration:underline; //make underline
</style>
Eg:
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
No comments:
Post a Comment