View Single Post
Old 05-03-2017, 05:40 PM   #13
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,827
Karma: 8700631
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by fluoresce View Post
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
RbnJrg is offline   Reply With Quote