Quote:
Originally Posted by Karellen
A novel I am reading has a couple of chapters as newspaper columns.
I have tried both <tables> and columns created with <div> but both methods chop off the bottom of the table.
Reading the wiki... https://wiki.mobileread.com/wiki/Table#long_columns
It states...
Unfortunately I don't know what that means.
What is an artificial cell with no visible border? And how do you create it?
|
As long as you read with a webkit based reader such as KePub on your Libra 2, it's easy.
CSS
Code:
.column {
-webkit-column-count: 2;
}
HTML
Code:
<div class-"column">
<p><p>“He’s wearing a force field suit,” Renne exclaimed. “They can’t penetrate from that range.”</p>
<p>Hogan opened the general communications icon in his virtual vision. “All squads close in on the target. Pursue until he’s in open ground, then open fire. Overload that force field.” As he watched the squads putting the new tactic into play, screens on every console started to flicker. In his virtual vision, red warning graphics sprang up across his interface with the station’s network.</p>
<p>“Kaos software has been released into the local network nodes,” his e-butler reported. “The controlling RI is attempting to clear it.”</p>
</div>