Html upper and lower indecies
问题 any ways to put into html using css upper or lower indecies like: ¹ or ₁ (I also need latin letters). 回答1: HTML TAGS: try sup and sub tags,... Demo Other Option Using css: <style type="text/css"> #sup, #sub { height: 0; line-height: 1; vertical-align: baseline; _vertical-align: bottom; position: relative; } #sup { bottom: 1ex; } sub { top: .5ex; } </style> 回答2: Use the <sup> and <sub> tags. 回答3: I'm not quite sure what you want with latin letters or if you know what latin letters are, but the