Superscript in CSS only?

后端 未结 15 1427
花落未央
花落未央 2020-11-29 15:20

How can I get superscript done, only in CSS?

I have a stylesheet where I mark the external links with a superscript character, but I\'m having a hard time getting th

15条回答
  •  迷失自我
    2020-11-29 15:47

    http://htmldog.com/articles/superscript/ Essentially:

    position: relative;
    bottom: 0.5em;
    font-size: 0.8em;
    

    Works well in practice, as far as I can tell.

提交回复
热议问题