File: css_text_decoration.html

package info (click to toggle)
php-dompdf 0.6.1%2Bdfsg-2~bpo70%2B2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 4,200 kB
  • sloc: php: 19,599; makefile: 38; sh: 13
file content (94 lines) | stat: -rw-r--r-- 4,235 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
<style>
p {
  border: 1px dotted #999;
  margin: 0.5em 0;
}

.underline {
  text-decoration: underline;
  color: red;
}
.overline {
  text-decoration: overline;
  color: green;
}
.line-through {
  text-decoration: line-through;
  color: blue;
}

</style>
</head>
<body style="font-size: 24px;">

<p style="font-family: sans-serif;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>
<p style="font-family: sans-serif; font-weight: bold;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>
<p style="font-family: sans-serif; font-style: italic;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>
<p style="font-family: sans-serif; font-weight: bold; font-style: italic;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>

<p style="font-family: serif;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>
<p style="font-family: serif; font-weight: bold;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>
<p style="font-family: serif; font-style: italic;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>
<p style="font-family: serif; font-weight: bold; font-style: italic;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>

<p style="font-family: monospace;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>
<p style="font-family: monospace; font-weight: bold;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>
<p style="font-family: monospace; font-style: italic;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>
<p style="font-family: monospace; font-weight: bold; font-style: italic;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>

<p style="font-family: 'DejaVu Sans';">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>
<p style="font-family: 'DejaVu Sans'; font-weight: bold;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>
<p style="font-family: 'DejaVu Sans'; font-style: italic;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>
<p style="font-family: 'DejaVu Sans'; font-weight: bold; font-style: italic;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>

<p style="font-family: 'DejaVu Serif';">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>
<p style="font-family: 'DejaVu Serif'; font-weight: bold;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>
<p style="font-family: 'DejaVu Serif'; font-style: italic;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>
<p style="font-family: 'DejaVu Serif'; font-weight: bold; font-style: italic;">
  <span class="underline">underline</span> <span class="line-through">line-through</span> <span class="overline">overline</span>
</p>

</body>
</html>