View Single Post
Old 05-19-2013, 11:54 AM   #9
Bilingual
Member
Bilingual began at the beginning.
 
Posts: 12
Karma: 10
Join Date: May 2013
Device: none
Quote:
Originally Posted by mrmikel View Post
PDF might be the way to go for this sort of project.
I detest PDF for anything but paper hardcopies. It always looks like crap on-screen.

Tried this:

Code:
body {
margin:0;
padding:0;
height:100%;
}

.upper
{
height:50%;
width:100%;
background-color:#B2FFFF;
overflow:auto;
}

.lower
{
height:50%;
width:100%;
background-color:#98FB98;
overflow:auto;
}
Without JS it sorta works in a browser with the reading space evenly divided horizontally and each part nicely put into each semi-screen.

However, in an EPUB the full text of each part just appears consecutively.

SVG looks intriguing, but I can't seem to find any working examples of text within an SVG-wrapper.

Any pointers?

Last edited by Bilingual; 05-20-2013 at 07:05 AM. Reason: spelling errors
Bilingual is offline   Reply With Quote