Is there a method to organize a css file in the following structure?:
a:link {
color: red;
font-weight: bold;
a:hover {
text-decoration: none;
font-weight: normal
}
}
I would like a regular link to appear underlined and bold, but when hovering over it, I don't want it to be underlined or bold anymore, while keeping the same color. (This is just a simple example for demonstration)
EDIT: I am/was searching for a solution without using sass or less