blob: 91130e61cd3614d90ab1d173be1f7407f427d0c1 (
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
30
31
32
33
34
35
36
37
38
|
<title>text-decoration</title>
<style>
*{
text-decoration-skip-ink: none;
}
</style>
<h1>text-decoration on a block</h1>
<u>text directly in parent</u>
<div><u>text in block</u></div>
<div style="float:left; clear: left">text in float</div>
<div style="clear:left"></div>
<div style="display:inline-block">text in<br>inline-block</div><u>
</u><div style="display:inline-table">text in<br>inline-table</div>
<div style="height: 2em">
<div style="position: absolute">text in abs-pos</div>
</div>
<h1>text-decoration on an inline</h1>
<u>text directly in parent</u>
<div><u>text in block</u></div>
<div style="float:left; clear: left">text in float</div>
<div style="clear:left"></div>
<div style="display:inline-block">text in<br>inline-block</div><u>
</u><div style="display:inline-table">text in<br>inline-table</div>
<div style="height: 2em">
<div style="position: absolute">text in abs-pos</div>
</div>
|