Trademark Symbol
erics, June 15th, 2018
™ ™
I wanted the trademark symbol on the site title to be tiny. A simple thing, really, but it took me a few tries to get just right…
1 2 3 4 5 6 |
The CSS: h1 { font-size: 36px; line-height: 36px; } h1 sup { font-size: 15px; line-height: 15px; } The HTML: <h1>The Site Title<sup>&trade;</sup></h1> |