this is a question related to a case mentioned here: Handling a colon in an element ID in a CSS selector
I have some code which contains footnotes which are noted this way <sup id="fnref:fn1">1</sup>
and <sup id="fnref:fn2">2</sup>
etc.
In my css I know how to make a rule for each case
sub#fnref\:fn1 {vertical-align: super} // or "\3A" instead of ":" to be correct
sub#fnref\:fn2 {vertical-align: super}
But how to write the css to get all cases into one rule (I don't want to make a endless list for all potential footnotes.
Thanks in advance Florian