Html upper and lower indecies

前端 未结 4 1866
南方客
南方客 2021-01-19 00:21

any ways to put into html using css upper or lower indecies like: ¹ or ₁ (I also need latin letters).

4条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-19 00:54

    HTML TAGS: try sup and sub tags,...

    Demo

    Other Option Using css:

    .sup,
    .sub {
      height: 0;
      line-height: 1;
      vertical-align: baseline;
      _vertical-align: bottom;
      position: relative;
    }
    
    .sup {
      bottom: 1ex;
    }
    
    .sub {
      top: .5ex;
    }
    text upperlower

提交回复
热议问题