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
The following is taken from Mozilla Firefox's internal html.css:
sup { vertical-align: super; font-size: smaller; line-height: normal; }
So, in your case it would be something, like:
.superscript { vertical-align: super; font-size: smaller; line-height: normal; }