How to have regular leading / line-height in html when using <sup>

Add this CSS to the head of your document to make sure superscript doesn’t affect the line-height:

<style>
    sup {line-height:0; vertical-align:text-top;}
</style>

You should also uncheck ‘Protect from external styles’ in the Document inspector.

3 Likes