blob: 3f368529c394a4f14610b0b76e28466ba30d76d7 (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Non rectangular tables</title>
</head>
<body>
<table border="1">
<tr>
<th>Column 1 Heading</th>
<th>Column 2 Heading</th>
<th>Column 3 Heading</th>
</tr>
<tr>
<td>Row 1: Col 1</td>
<td>Row 1: Col 2</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>
<td>Row 2: Col 4</td>
</tr>
</table>
<div><h1>Firefox:</h1>Die Tabelle wird verlängert, um Platz für das Element zu machen, welches zuviel ist.</div>
<div><h1>Chrome:</h1>Die Tabelle wird verlängert, um Platz für das Element zu machen, welches zuviel ist.</div>
</body>
</html>
|