The only way I know how do tables is:
<table style="width:100%">
<tr>
<td>xxx</td>
<td>xxx</td>
</tr>
<tr>
<td>xxx</td>
<td>xxx</td>
</tr>
</table>
</body>
</html>
Some concerns:
1) the width will look weird if there is only one or two words by the character...other times there may be two sentences.
2) Are tables subject to the readers font-size increase? If so, how do they not totally wreck the layout of the table if it can't fit on their display at larger font sizes.
Is there a better way to do all this?
|