@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.
21 lines (13 loc) • 536 B
Markdown
# small
_No custom styles currently_
The small HTML element represents side-comments and small print, like copyright and legal text, independent of its styled presentation. By default, it renders text within it one font-size smaller, such as from small to x-small.
## Example
<div class="card">
<p>Here is an example of some <small>small text</small> in a paragraph.</p>
</div>
<details class="compact">
<summary>HTML</summary>
```html
<p>Here is an example of some <small>small text</small> in a paragraph.</p>
```
</details>