blob: cf3c3d45f6f6d0dd1b8f4da31826b7f6e3791039 (
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
|
<html>
<body>
<table>
<tr>
<td id="A" width='1' style="background:blue"></td>
</tr>
<tr>
<td id="B" colspan='2' rowspan='2' style="background:green"></td>
</tr>
<tr>
<td id="C" rowspan='2' style="background:red"></td>
</tr>
<tr>
<td id="D" colspan='2' style="background:cyan">
<table>
<tr>
<td id="E" style="background:magenta"></td>
<td id="F" style="background:yellow">
<input type='text' />
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
|