Great suggestion! According to a StackOverflow answer, this CSS will do the trick:
a[href^="http://"]:after{ content: " (" attr(title) ") "; }
Very close, though the :after form is deprecated—it should be ::after.
:after
::after
If you’re using GreaterWrong, I suggest this instead:
.body-text a::after { content: " (" attr(title) ") "; }
Thanks!
Great suggestion! According to a StackOverflow answer, this CSS will do the trick:
Very close, though the
:after
form is deprecated—it should be::after
.If you’re using GreaterWrong, I suggest this instead:
Thanks!