+ 2
what is subscripted text and superscripted text
how can I be helpful by these type of text style.....
3 ответов
+ 1
when we write x square (in maths) 2 is superscript
and when we write o 2 (in them) 2 is subscript
+ 1
for the word in which you use it, and the "sub" tag down , "sup" moves up to the label. "px" you can do so using.
0
For most purposes, you can use the <sup></sup> tag to create super script text and<sub></sub> to create sub-script text. See examples below:
Code : x<sup>x+1</sup>
Result : xx+1
Code :x<sub>i+1</sub>
Result : xi+1
those x+1 and i+1 are called superscript and subscript respectively.