Link styles?

admin

Administrator
Staff member
I am still new to CSS and am stuck right now.
I have specified the link styles but would like to make a visited link appear only dotted underlined not solid underlined.
I know how to do the dotted one but the link is then still solid underlined as well (probably, as I understand it, cause this is set in a:link). Is there a way to change that? I'd like to keep a normal link solid underlinded though.

GwionSomething liket this?

a:visited {
text-decoration: none;
border-bottom: purple dashed 1px;
color: purple;
}
 
Back
Top