@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.
33 lines (19 loc) • 586 B
Markdown
# text utilities
A collection of text-specific utility classes.
These classes can be added to any element to style the text inside.
## Examples
<div>Normal text</div>
<div class="bold">bold text</div>
<div class="italic">italic text</div>
<div class="strike">strike text</div>
<div class="underline">underline text</div>
<details class="compact">
<summary>HTML</summary>
```html
<div>Normal text</div>
<div class="bold">bold text</div>
<div class="italic">italic text</div>
<div class="strike">strike text</div>
<div class="underline">underline text</div>
```
</details>