Quote:
Originally Posted by mrmikel
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?