blob: 75163e97fc9a4948dcdc474afd0f8228a0598856 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>semitransparent-decoration-line-ref</title>
<style>
*{
text-decoration-skip-ink: none;
}
.underline {
text-decoration: underline rgba(0,0,0,0.3);
font-size: 2em;
}
.overline {
text-decoration: overline rgba(0,0,0,0.3);
font-size: 2em;
}
.line-through {
text-decoration: line-through rgba(0,0,0,0.3);
font-size: 2em;
}
</style>
</head>
<body>
<p class="underline">Lorem ipsum dolor sit amet</p>
<p class="overline">Lorem ipsum dolor sit amet</p>
<p class="line-through">Lorem ipsum dolor sit amet</p>
</body>
</html>
|