mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
36 lines
414 B
HTML
36 lines
414 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
|
|
<html>
|
|
<head>
|
|
<title>tfoot css</title>
|
|
<style type="text/css">
|
|
<!--
|
|
table{height:100%;}
|
|
thead{font-weight:bold}
|
|
tfoot{font-weight:bold}
|
|
-->
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table summary="tfoot test">
|
|
<thead>
|
|
<tr>
|
|
<td>THEAD</td>
|
|
</tr>
|
|
</thead>
|
|
<tfoot>
|
|
<tr>
|
|
<td>TFOOT</td>
|
|
</tr>
|
|
</tfoot>
|
|
<tbody>
|
|
<tr>
|
|
<td>TBODY</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
</body>
|
|
</html>
|