@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.
18 lines (12 loc) • 330 B
Markdown
# ins (Inserted)
The del HTML element represents a range of text that has been inserted into a document.
## Example
<div class="card">
<p><ins>This text is marked with a ins tag.</ins></p>
</div>
<details class="compact">
<summary>HTML</summary>
```html
<p><ins>This text is marked with a ins tag.</ins></p>
```
</details>