Hey essi,
You can do that using the [attribute] selector in CSS.
The ‘href’ attribute for a tag is the tag itself, e.g:
<a href="#Question" class="tag" target="_blank" rel="noopener">#Question</a>
So we can target the #Question tag using
.tag[href="#Question"] {
color: green !important;
}
The above works for me, you can just swap out the ‘href’ part with your own tag 