Question

Is is possible to have a superscript registered mark "®" inside a select menu? If so, how is this done? Can you use CSS to achieve this?

Was it helpful?

Solution

There's no way to make a single character superscript inside an <option>. You're stuck with a regular ® (&reg;).

OTHER TIPS

You can achieve results in tough cases using this method to superscript special characters with jQuery. But I must admit that inside an option... I'm blank.

CSS1 : The numbers need tweaking depending on your font and point size.

<div style="font-size:96px;">
Registered<span style="vertical-align:2.7em; font-size:0.2em;">&reg;</span>
</div>

I don't know if this is possible with CSS but in html you could write:

Company<sup>&reg;</sup>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top