View Single Post
Old 05-04-2017, 12:19 PM   #17
DaleDe
Grand Sorcerer
DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.
 
DaleDe's Avatar
 
Posts: 11,470
Karma: 13095790
Join Date: Aug 2007
Location: Grass Valley, CA
Device: EB 1150, EZ Reader, Literati, iPad 2 & Air 2, iPhone 7
Quote:
Originally Posted by RbnJrg View Post
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

Last edited by DaleDe; 05-04-2017 at 12:21 PM.
DaleDe is offline   Reply With Quote