Superscript and subscript in css?

Solved
yiv Posted messages 71 Registration date   Status Member Last intervention   -  
Kitkatryne Posted messages 12 Registration date   Status Member Last intervention   -
Hello,

How can we create subscripts (at the bottom of the letter in small size) and superscripts (at the top of the letter in small size)?
XHTML tags or CSS style?

I don’t like the <sup> tag because it shifts my line spacing by half a point, creating a line spacing of one and a half.
Are there any other HTML tags?

And in CSS, what class can we create? If it exists....

Namaste
Yv

9 answers

  1. gryzzly Posted messages 5220 Registration date   Status Contributor Last intervention   1 340
     
    How can we create subscripts (in small text at the bottom of a letter)

    <sub>

    and superscripts (in small text at the top of a letter)?

    <sup>

    I don't like the <sup> tag because it shifts my line spacing by half a point, creating a line spacing of one and a half. Are there other HTML tags?

    No

    And in CSS, what class can we create? If it exists....

    SMALL, SUB, SUP { font-size: .83em } /*you should be able to play with the line height and line dimension properties here*/
    SUB { vertical-align: sub }
    SUP { vertical-align: super }
    --

    The mean bear ©Me
    21