Quote:
Originally Posted by fluoresce
My EPUB contained many HTML tables, many of which would break on small screens. I therefore took screenshots of the tables and inserted the images into the EPUB in place of the HTML tables.
|
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