Possible Duplicates:
Why not use tables for layout in HTML?
Tables instead of DIVs
I have an HTML page in which I would like to display several thumbnail images of books stacked one on top of each other with some summary text to the right of each image. Would it be inappropriate to use tables to layout this content within the page? Should I be using CSS or is this acceptable and reasonable use for tables?. I understand why it is not a good idea to layout an entire page using tables, but I am trying to discern when it is "proper" to use tables for displaying content. Thank you.
<table>
<tr>
<td width="50%">Thumbnail Image Here</td>
<td width="50%">Summary Text Here</td>
</tr>
<tr>
<td width="50%">Thumbnail Image Here</td>
<td width="50%">Summary Text Here</td>
</tr>
<tr>
<td width="50%">Thumbnail Image Here</td>
<td width="50%">Summary Text Here</td>
</tr>
</table>
