I've declared quotes like
.quotes { quotes: "\201C""\201D"; }
But in fact I only use the open-quote because the end-quote is supposed to be the open-quote mirrored horizontally (for visual reasons, the end-quote of that font looks like crap).
So I got:
.quotes:after { content: open-quote; }
That worked fine so I tried to apply "transform: scale(-1, 1);" to .quotes:after
but this doesn't work. Any suggestions?