Here's what I'm looking to achieve: http://codepen.io/anon/pen/KaLarE
I want to make a list of links, each with a checkbox in front. Then, I want to be able to check the boxes for visited links.
I attempted this approach, but unfortunately, it only displayed 'no', which wasn't what I wanted. [smirk]
a::before {
content: 'no'
}
a:visited::before {
content: 'yes'
}
If there's a way to achieve this without using JavaScript, that would be fantastic :-)