How can I get superscript done, only in CSS?
I have a stylesheet where I mark the external links with a superscript character, but I\'m having a hard time getting th
http://htmldog.com/articles/superscript/ Essentially:
position: relative; bottom: 0.5em; font-size: 0.8em;
Works well in practice, as far as I can tell.