table too long to print
Posted: Tue Aug 16, 2005 7:17 am
I have a table which is "1700px"
I want to print this table in "landscape" and when it comes to the end of the page print the rest on another sheet.
How can i do this?
At the moment the page only prints as much as it can on a page.
In the example below it will only print to "row 6" and leave the rest. I want "row 7" onwards on the next page.
I want to print this table in "landscape" and when it comes to the end of the page print the rest on another sheet.
How can i do this?
At the moment the page only prints as much as it can on a page.
In the example below it will only print to "row 6" and leave the rest. I want "row 7" onwards on the next page.
Code: Select all
<table border="0" width="1700" cellspacing="0" cellpadding="0">
<tr>
<td>row 1</td>
<td>row 2</td>
<td>row 3</td>
<td>row 4</td>
<td>row 5</td>
<td>row 6</td>
<td>row 7</td>
<td>row 8</td>
<td>row 9</td>
<td>row 10</td>
<tr>
<tr>
<td>row 1</td>
<td>row 2</td>
<td>row 3</td>
<td>row 4</td>
<td>row 5</td>
<td>row 6</td>
<td>row 7</td>
<td>row 8</td>
<td>row 9</td>
<td>row 10</td>
<tr>
</table>