summaryrefslogtreecommitdiff
path: root/Base/res/html/misc/text-decoration.html
blob: 2c641133326d660ceff837ce4c57328f70f9fc34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>text-decoration test</title>
<style>
.overline { text-decoration: wavy blue overline; }
.underline { text-decoration: red underline double; }
.strikethrough { text-decoration: line-through dotted green; }
.blink { text-decoration: blink; }
.current-color { color: #8B4513; text-decoration: underline; }
.overboard { text-decoration: double overline underline line-through magenta; }
</style>
</head>
<body>
	<p class="overline">Overline</p>
	<p class="underline">Underline</p>
	<p class="strikethrough">Wombling</p>
	<p class="blink">FREE!</p>
	<p class="current-color">This underline should match the text color</p>
	<p class="overboard">This should have an underline, overline and line-through, all in glorious magenta.</p>
</body>
</html>