Jaffa_Kree2k5
05-24-2005, 11:05 PM
I am trying to dynamically assign page breaks for a page that has several tables. Goal is if table grows beyond a page to insert a break and start the table on a new page. I hav tried several combinations of using page-break-always in my css page wrapping a div around every table, like so:
div {
page-break-after: always;
}
table {
page-break-after: auto;
}
and also div tags inbetween tables, like so:
<DIV style="page-break-after:auto"></DIV>.
I feel I am close, but it's not working correctly. It still runs a table over from one page to the next.
Does that make sense? Any ideas?
div {
page-break-after: always;
}
table {
page-break-after: auto;
}
and also div tags inbetween tables, like so:
<DIV style="page-break-after:auto"></DIV>.
I feel I am close, but it's not working correctly. It still runs a table over from one page to the next.
Does that make sense? Any ideas?