basic tech support required
This feels like an extremely silly question to ask, but how do you achieve links that those of :
(aka a small circle after the link)
https://practicaltypography.com/
I much prefer it to underlining things...
basic tech support required
@freddyym do you have an example of what you're after?
basic tech support required
@freddyym sorry about the delay, here is the CSS pulled directly from that site:
```
a {
text-decoration: none;
color: inherit;
transition-property: background;
transition-duration: 0.2s;
}
a::after {
position: relative;
content: "°";
margin-left: 0.1em;
font-size: 90%;
top: -0.1em;
color: rgb(153, 51, 51);
font-feature-settings: "caps";
font-variant-numeric: normal;
}
```
basic tech support required
@freddyym note the removal of `text-decoration` and the insertion of `content: "°"` after the anchor.