@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.
26 lines (20 loc) • 607 B
Markdown
# s (strikethrough)
Screen readers do not always read text that has been stricken
## Example
<div class="card">
<s>Today's Special: Salmon</s> SOLD OUT
<br>
<span style="text-decoration:line-through;">Today's Special: Tuna</span> SOLD OUT
<br>
<span class="strike">Today's Special: Chicken</span> SOLD OUT
</div>
<details class="compact">
<summary>HTML</summary>
```html
<s>Today's Special: Salmon</s> SOLD OUT
<br>
<span style="text-decoration:line-through;">Today's Special: Tuna</span> SOLD OUT
<br>
<span class="strike">Today's Special: Chicken</span> SOLD OUT
```
</details>