File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
1010For a steady stream of TILs from a variety of rocketeers, checkout
1111[ til.hashrocket.com] ( https://til.hashrocket.com/ ) .
1212
13- _ 742 TILs and counting..._
13+ _ 743 TILs and counting..._
1414
1515---
1616
@@ -229,6 +229,7 @@ _742 TILs and counting..._
229229
230230### HTML
231231
232+ - [ Render Text As Superscript] ( html/render-text-as-superscript.md )
232233- [ Submit A Form With A Button Outside The Form] ( html/submit-a-form-with-a-button-outside-the-form.md )
233234
234235### Internet
Original file line number Diff line number Diff line change 1+ # Render Text As Superscript
2+
3+ There is an [ HTML
4+ tag] ( https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sup ) that
5+ tells browser engines to render text as superscript -- like when you need an
6+ exponent.
7+
8+ ```
9+ <p>Render this text as <sup>superscript</sup>!</p>
10+ ```
11+
12+ Here is what the above would look like:
13+
14+ <p >Render this text as <sup >superscript</sup >!</p >
15+
16+ Check out this [ codepen example] ( https://codepen.io/jbranchaud/pen/GzoyXe )
17+ to play around with it.
You can’t perform that action at this time.
0 commit comments