- About Me
Hullo, I'm Shi Chuan.
I'm an indie web developer, book author, tech reviewer, creator of Mobile Boilerplate, JavaScript Pattern Collection, HTML5 Boilerplate team member.
Read more about me here.
Book Authoring
Book Review
Category Archives: CSS Core
CSS only superscript
The commonly used method to format superscript in HTML is by doing in the following way: <sup>hullo world</sup> To achieve the same effect using CSS, you can set the vertical-align Property: <style> span { vertical-align:super; } </style> <p>hullo world<span>TM</span></p>