summaryrefslogtreecommitdiff
path: root/legacy/haveproblems/table-height.html
blob: 914460c54acba4df18d76956b871000a23784d21 (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
<html>
	<head>
		<style>
			html, body {
				margin:0;
				padding:0; }
		</style>
	</head>
	<body style="height:100%;">
		<table style="background:red; width:100%; height:100%;">
			<tr style="background:orange;">
				<td style="background:yellow;">
					<p>
						Table cell should fill heigh
						of table, which should be the
						viewport height.
					</p>
					<p>
						Red table, orange row, yellow
						cell.
					</p>
				</td>
			</tr>
		</table>
	</body>
</html>