Forum Moderators: not2easy
Need help
I have a table , in which I am using <thead><tbody><tfoot>.
I am able to see the header and the footer on all the pages when I print it.
"But I need to print only the 2nd row of <thead> on the First Page and then the entire <thead> on the remaining pages."
Is there a way I can make my 1st row invisible only when the first page is printed.
<html>
<head>
<STYLE type="text/css">
thead {display: table-header-group;}
tfoot {display: table-footer-group;}
</STYLE>
</head>
<body>
<table>
<thead>
<tr><td>Do not display on first page</td></tr>
<tr><td>display on all pages</td></tr>
</thead>
<tbody>
<tr><td>Main body</td></tr>
</tbody>
<tfoot>
<tr><td>footer</td></tr>
</tfoot>
</table></body></html>
Thanks :)