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
Here's the exact way sup uses:
.superscript{ vertical-align:super; font-size:smaller; }
Found this via google chrome inspect element.