Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

page break inside a table

Status
Not open for further replies.

Dracosms

IS-IT--Management
Feb 26, 2004
21
BE
Is it possible to add a page break (page-break-before) inside a table ?
In my case it's something like this:
<table>
<tr>.. </tr>
<tr>.. </tr>
I Want a page break here
<tr> .. </tr>
</table>

How can I get a page break at that particular location ?

Greetz,

Dracosms
 

I've not tried this, but it sounds as if you could just put the style on the TR before you want the break... Something like this:

Code:
<table>
 <tr>.. </tr>
 <tr>.. </tr>
 <tr style="page-break-before:always;"> .. </tr>
</table>

Hope this helps,
Dan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top