/ Published in: CSS
How to mark external links with an arrow behind by using CSS
Expand |
Embed | Plain Text
a[href^="http://"]:not([href*="yourdomain.com"])::after { content: "\2197"; }
You need to login to post a comment.
steho on 01/21/13
1 person have marked this snippet as a favorite
How to mark external links with an arrow behind by using CSS
a[href^="http://"]:not([href*="yourdomain.com"])::after { content: "\2197"; }
You need to login to post a comment.