Table foot element displays strangely in ADE
Hi there -
I'm having some strange results when setting up a table in InDesign that includes a "table foot".
In the HTML that comes out of InDesign on export to EPUB, the table foot element is just below the table head element, then follows a tbody element with all the rest of the table.
When viewed in browsers like Chrome and Firefox and software like Sigil this displays fine - the foot is displayed at the bottom of the table, separated from the table head by all the stuff in the body. But in Adobe Digital Editions the foot is displayed just below the table head, followed by the body.
Is this something unique to ADE or do other ereaders do this too?
Should one avoid table foot when setting up a document?
Not sure what happens to HTML tags when I insert them in posts here so bear with me...
Table HTML looks like this when exported to EPUB from InDesign:
<table id="table-1">
<thead>
<tr>
<td>
<p >head</p>
</td>
<td>
<p >head</p>
</td>
</tr>
</thead>
<tfoot>
<tr>
<td>
<p >foot</p>
</td>
<td>
<p >foot</p>
</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>
<p >1</p>
</td>
<td>
<p >2</p>
</td>
</tr>
</tbody>
</table>
|