Quote:
Originally Posted by sjfan
Thanks a lot! That info was enough to find RbnJrg's post here: https://www.mobileread.com/forums/sh...d.php?t=258519
The saving grace is that the lines I posted are as long as things get (most are shorter), so even at 18pts it usually wouldn't wrap on a larger e-reader. I'll play with that solution and decide whether it's viable or not.
|
Hi sjfan;
I think you're refering to this post:
https://www.mobileread.com/forums/sh...80&postcount=8
But you can follow this another aproximation:
Code:
<body>
<p>Here's a full line to start this dumb poem,</p>
<p class="inlined">This line it ends</p>
<p class="inlined1">and then</p>
<p class="inlined2">the next begins</p>
<p>And now the sample's coming to an end.</p>
</body>
and
Code:
p {
text-align: left;
text-indent: 0;
line-height: 1.2em;
margin: 0;
}
.inlined, .inlined1, .inlined2 {
display: inline;
}
.inlined1 {
vertical-align: -1.2em;
}
.inlined2 {
vertical-align: -2.4em;
}
Below you can see how it looks under ADE:
I attach the respective epub.
Regards
Rubén