RetroZilla/layout/html/tests/table/bugs/bug51000.html
2015-10-20 23:03:22 -04:00

44 lines
533 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<html>
<head>
<title>height</title>
<style type="text/css">
thead {
height: 300px
}
tbody {
height: 300px
}
tfoot {
height: 300px
}
</style>
</head>
<body>
<p>300xp height value set on THEAD, TBODY, and TFOOT</p>
<table border>
<thead>
<tr>
<th>This THEAD should be 300px high</td>
</tr>
</thead>
<tfoot>
<tr>
<td>This TFOOT should be 300px high</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>This TBODY should be 300px hight</td>
</tr>
</tbody>
</table>
</body>
</html>