summaryrefslogtreecommitdiff
path: root/Base/res/html/misc/text-decoration.html
blob: 562fb4b772d1840795a31383983e6902afdb6acc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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; }
</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>
</body>
</html>