I want the border attribute on a visited link to render dashed. I can only get it to render solid and I can't figure out 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 at this blog post.
Apparently, it's the result of a privacy issue. Refer to the following links:
Per the links above, the styling of a:visited
links is restricted to the use of color-based properties only.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With