How can the width of the cell in a table for ADE be adjusted ?
I wrote the following HTML code in a ePub file.
<table style="width:100%;border-collapse: collapse;">
<tr><td style="width:25%">red</td>
<td style="width:75%">red</td></tr>
</table>
But, the created table runs over the page at the right side in the ADE (see figure). The values of widths in the both td tags are set to 50% and the same result is got. However, with no set of the values the table fits in the page.
Why? How should I do?