Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CSS superscript registration trademark

Tags:

css

I would like all "®" on a site to be in superscript. Can I do that with CSS?

like image 997
jrhicks Avatar asked Nov 09 '09 21:11

jrhicks


People also ask

How do you superscript a registered trademark?

For example: To insert the copyright symbol, press Ctrl+Alt+C. To insert the trademark symbol, press Ctrl+Alt+T. To insert the registered trademark symbol, press Ctrl+Alt+R.

Does registered trademark symbol need to be superscript?

The proper manner to display these symbols is immediately following the mark; the symbol is commonly in superscript style, but that is not legally required.

How do you do the superscript trademark symbol in HTML?

The <sup> tag defines superscript text. Superscript text appears half a character above the normal line, and is sometimes rendered in a smaller font.


1 Answers

AverageAdam's answer will work fine, but if you for some reason wanted a CSS version, you could do this:

.sup { vertical-align: super; }

and

<span class="sup">&reg;</span>

From here.

like image 114
JasonWyatt Avatar answered Oct 03 '22 00:10

JasonWyatt