|
1 <!DOCTYPE html> |
|
2 <title>text-decoration</title> |
|
3 |
|
4 <h1>text-decoration on a block</h1> |
|
5 |
|
6 <div style="text-decoration: underline"> |
|
7 |
|
8 text directly in parent |
|
9 |
|
10 <div>text in block</div> |
|
11 |
|
12 <div style="float:left; clear: left">text in float</div> |
|
13 <div style="clear:left"></div> |
|
14 |
|
15 <div style="display:inline-block">text in<br>inline-block</div> |
|
16 <div style="display:inline-table">text in<br>inline-table</div> |
|
17 |
|
18 <div style="height: 2em"> |
|
19 <div style="position: absolute">text in abs-pos</div> |
|
20 </div> |
|
21 |
|
22 </div> |
|
23 |
|
24 <h1>text-decoration on an inline</h1> |
|
25 |
|
26 <div style="text-decoration: underline; display: inline"> |
|
27 |
|
28 text directly in parent |
|
29 |
|
30 <div>text in block</div> |
|
31 |
|
32 <div style="float:left; clear: left">text in float</div> |
|
33 <div style="clear:left"></div> |
|
34 |
|
35 <div style="display:inline-block">text in<br>inline-block</div> |
|
36 <div style="display:inline-table">text in<br>inline-table</div> |
|
37 |
|
38 <div style="height: 2em"> |
|
39 <div style="position: absolute">text in abs-pos</div> |
|
40 </div> |
|
41 |
|
42 </div> |
|
43 |