mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
20 lines
330 B
HTML
20 lines
330 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
p {
|
|
font-size: 20px;
|
|
margin: 20px;
|
|
}
|
|
|
|
#underline {
|
|
text-decoration: underline red;
|
|
}
|
|
|
|
#line-through mark {
|
|
background-color: yellow;
|
|
text-decoration: line-through blue;
|
|
}
|
|
</style>
|
|
|
|
<p id="underline">Underline decoration</p>
|
|
<p id="line-through"><mark>Line-through decoration</mark></p>
|