The dotted border on the link looks solid

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 .

+5
source share
2 answers

This seems to be the result of a privacy issue. See the following links:

a:visited .

+8

CSS:

.entry-content p a:visited {
    border-bottom: 3px dashed #78B3E0;
 }

: border: <width> <style> <color>;

0

All Articles