<!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> |