Is there a way to change the style of <sup>
elements using CSS without removing them from the HTML code? I want to make them look like regular text.
Basically, I want the result of
<div>Some <sup>random</sup> text.<div>
to appear as
<div>Some random text.<div>
Do I need to reverse the effects of the superscript or is there a more efficient way to achieve this? Your help is appreciated. Thank you!