HTML TAGS:尝试sup和sub标签,...
其他选项使用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>
Run Code Online (Sandbox Code Playgroud)