Hi, I have a table and I'm looking for help to give format to its content.
This is the table:
<table>
<tr>
<td>small 1</td>
<td>small 2</td>
<td>small 3</td>
</tr>
<tr>
<td>just one huge frase</td>
<td></td>
<td></td>
</tr>
</table>
As you can see "small 1" and "just one huge frase" share the same column and "small 2" doesn't start until "just one huge frase" is done:
Quote:
small 1····················small 2 small 3
just one huge frase
but this is how I want it:
Quote:
small 1 small 2 small 3
just one huge frase
It seems that the table then should be:
<table>
<tr>
<td>small 1</td>
<td>small 2</td>
<td>small 3</td>
</tr>
<tr>
<td>just one</td>
<td> huge f</td>
<td>rase</td>
</tr>
</table>
but the table adds an unwanted space between "f"-"rase". I know that there's no way around because the size of cells, etc.. But can you see an alternate way to accomplish this? Thank you.