@ou-imdt/css
Version:
The IMDT CSS library styles native elements with light, extendable CSS. It is developed for Interactive Media Developers at the Open University.
24 lines (17 loc) • 538 B
Markdown
# sub (Subscript)
_No custom styles currently_
Subscript is useful for formatting footnote numbers, mathematical notation and chemical formula.
## Example
<div class="card">
<p>
Almost every developer's favorite molecule is C<sub>8</sub>H<sub>10</sub>N<sub>4</sub>O<sub>2</sub>, also known as "caffeine."
</p>
</div>
<details class="compact">
<summary>HTML</summary>
```html
<p>
Almost every developer's favorite molecule is C<sub>8</sub>H<sub>10</sub>N<sub>4</sub>O<sub>2</sub>, also known as "caffeine."
</p>
```
</details>