Quote:
Originally Posted by RbnJrg
You can avoid that tables would break on small screens under ADE. So, if your tables, not images of tables, would look ok in ADE, you can get the tables won't break by adding in your .css stylesheet the following:
Code:
tr {
page-break-after: avoid;
}
Take in count that the property page-break-after: avoid; only will work with ADE (with RMSDK, not webkit). Besides, if your tables have many rows, very probably each table will be displayed in a new page.
Regards
Rubén
|
If the cell is too big to fit on a page, The table just displays on the first page and all the rest are lost, with or without the CSS entry. Better implementations are available such as iBooks which will allow you to click and allows scrolling of the cells.
Dale