In HTML I want to display a small table as part of a paragraph. One way to do that is this:
<table>
<tr>
<td>
Before
<table style="display:inline;"><tr><td>a</td><td>b</td></tr> <tr><td>c</td><td>d</td></tr> </table>
After
</td>
</tr>
</table>
which produces this nice layout:
a b
Before After
c d
which is exactly what I want.
But it seems rather silly to me to use a table inside a table when what I really want is to use a table inside a paragraph. However, if I try using this HTML:
<p>
Before
<table style="display:inline;"><tr><td>a</td><td>b</td></tr> <tr><td>c</td><td>d</td></tr></table>
After
</p>
I get this ugly layout:
Before
a b
After
c d
I've tried using various different display styles, but none seem to do what I want.
Am I forced to use the table-within-table code, or am I missing something?