Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

css - getting rid of space with the superscript in html emails

superscript is leaving a big space between the line height.

code is

<span style="position:relative; bottom:0.2em; font-size: 0.8em">&reg;</span>

I am not using the <sup></sup> tag as it too leaves a big gap in the line height.

Is there a work around. I am aware that the position:relative does not render well in outlook. What's the other alternative to this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I've made few experiments in jsFiddle and I think you will be able to use:

<sup style="line-height: 0">&reg;</sup>

in firefox it does not increases the gap between the lines


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...