mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
44 lines
533 B
HTML
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>
|