blob: 301c2251ab429b16e460a1564986fae8a565b93f (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Colliding Row and Col Span</title>
</head>
<body>
<h1>Colliding Row and Col Span</h1>
<table border="1">
<tr>
<th>Column 1 Heading</th>
<th rowspan="2">Column 2 Heading</th>
<th>Column 3 Heading</th>
</tr>
<tr>
<td colspan="2" align="center">Row 1: Col 1</td>
<td>Row 1: Col 3</td>
</tr>
<tr>
<td>Row 2: Col 1</td>
<td>Row 2: Col 2</td>
<td>Row 2: Col 3</td>
</tr>
</table>
<div>
<h1>Firefox:</h1>
Die beiden Tabellenelemente überlagern sich einfach.
</div>
<div>
<h1>Chrome:</h1>
Die beiden Tabellenelemente überlagern sich einfach.
</div>
</body>
</html>
|