Skip to content

Instantly share code, notes, and snippets.

@adamlaki
adamlaki / main.css
Last active March 24, 2019 19:28
Style External Links in CSS
a[target="_blank"]:not([href*="pineco.de"])::after {
/* You can style it anyway you want... */
content: '';
display: inline-block;
background: transparent url(external-arrow.svg) no-repeat center center;
background-size: cover;
width: 1rem;
height: 1rem;
margin-left: 0.3rem;
}