Below is the css for a text link in 4 different states - link,visited,hover, and active.
Do I need to do this css code for every type of link class I have, some of the classes do not even change the appearance. (link,visited,hover,active) If only the appearance of a text link changes for hover and link would I only need the classes below for those 2 or should I still use all 4?
<style>
a.comment_mod:link {
font-family: arial;
font-size: 14px;
font-weight: bold;
color: #003366;
text-decoration: none;
}
a.comment_mod:visited {
font-family: arial;
font-size: 14px;
font-weight: bold;
color: #003366;
text-decoration: none;
}
a.comment_mod:hover {
font-family: arial;
font-size: 14px;
font-weight: bold;
color: #000000;
border-bottom:1px dotted #000000;
}
a.comment_mod:active {
font-family: arial;
font-size: 14px;
font-weight: bold;
color: #003366;
text-decoration: none;
}
</style>