blob: 913902418e789e348f2aa1278531062a6ac1e38e (
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
39
40
41
42
43
44
45
46
47
48
|
<head>
<title></title>
<style>
td { border: 4px dotted black; }
</style>
</head>
<body>
<table style="margin-top: 50px;">
<tr>
<td>
<div style="height: 50px; width: 100px; background: lightgreen;">
</div>
</td>
<td>
<div style="height: 10px; width: 100px; background: lightgreen;">
<div style="height: 100px; width: 50px; background: skyblue;">
</div>
</div>
</td>
<td>
<div style="height: 10px; width: 100px; background: lightgreen;">
<div style="margin-top: -75px; height: 100px; width: 50px; background: skyblue;">
</div>
</div>
</td>
</tr>
</table>
<table style="margin-top: 150px; border-collapse: collapse;">
<tr>
<td>
<div style="height: 50px; width: 100px; background: lightgreen;">
</div>
</td>
<td>
<div style="height: 10px; width: 100px; background: lightgreen;">
<div style="height: 100px; width: 50px; background: skyblue;">
</div>
</div>
</td>
<td>
<div style="height: 10px; width: 100px; background: lightgreen;">
<div style="margin-top: -75px; height: 100px; width: 50px; background: skyblue;">
</div>
</div>
</td>
</tr>
</table>
</body>
|