Things I have tried
I can use this snippet to display an image after a tag using an external image url
.tag[href="#iPhone"]:after {
content: url(https://i.pinimg.com/originals/38/12/72/3812728fc9fdcecb67032fd2cf20788b.png);
}
What I’m trying to do
I would like to be able to reference an image from my vault’s attachment folder. Is this possible? This doesn’t work:
.tag[href="#iPhone"]:after {
content: url(attachments/ios.png);
}