>>103561393
>>103561413
i do it this way
.postNum > a:first-child:before {content: "⧉ "; font-size: x-small !important; position: relative; bottom: 2px}
i was always told that in CSS .class [attribute="value"]
is kinda a slow way to select something and and to try to avoid it
you probably won't feel a perf hit from it either way but consider a rolling sticky is reading the attributes of thousands of elements
stacking pseuo-selectors is probably not much better practice especially when i'm relative positioning it
i didn't know you could embed ::before now