Created
November 10, 2019 14:37
-
-
Save damianwajer/4195a1eb6288026bfad266029989948c to your computer and use it in GitHub Desktop.
[CSS] Show a little arrow glyph after 'target="_blank"' anchors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Show a little arrow glyph after `target="_blank"` anchors. | |
Source: https://til.secretgeek.net/css/glyph_after_blank_anchors.html | |
*/ | |
a[target="_blank"]:after { | |
content: " \2197"; | |
font-size: 0.9em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment