Quote:
Originally Posted by Offsite Office Professionals
I've built my website using a CSS template and I need to add superscripts. I tried using <sup> </sup> in the text file but this doesn't seem to work so I'm assuming I need to do something on the stylesheet. Any ideas?
|
In your HTML try adding a span class surrounding what you want superscripted:
<p>E=mc
<span class="superscript">2
</span></p>
And in the CSS: .superscript {vertical-align: super; }
HTH a bit,