I have the following CSS code:
/* unvisited link */
a.underl:link {
color: #000000;
text-decoration: none;
}
/* visited link */
a.underl:visited {
color: #000000;
text-decoration: none;
}
/* mouse over link */
a.underl:hover {
color: #ff6213;
text-decoration: underline;
}
/* selected link */
a.underl:active {
color: #ff0003;
text-decoration: underline;
}
Is there a way to create a new class underl2
where only the color of the link
is changed without duplicating and renaming the existing classes?