summaryrefslogtreecommitdiffstats
path: root/Aufgabe03/tableNonRectangular.html
blob: 94b2ee471ecde410b2510910798ee910db307eb6 (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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Non rectangular tables</title>
</head>
<body>
	<h1>Non rectangular tables</h1>
	<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>