I want the border attribute on the visited link to appear dotted. I can only make it solid, and I cannot understand why. Any help would be great. Thanks
Here is the css code I'm using:
.entry-content p a{
color: #333;
border-bottom: solid #beff00 3px;
}
.entry-content p a:hover{
color: #333;
border-bottom: solid #78b3e0 3px;
}
.entry-content p a:visited{
color: #333;
border-bottom: #78b3e0 dashed;
}
You can view it in action on this blog post .
source
share