Posted by Ben C on 12/31/07 19:48
On 2007-12-31, richard <I.dont.care@do.you> wrote:
[...]
> The basic table:
> 1...2...3
> 4...5...6
> 7...8...9
>
> Output as:
>
> 1........3
> 4...5...6
> 7...8....
>
> So how is that done properly?
You need to scale up to the lowest common multiple. Something like this:
<tr>
<td colspan="3">1</td>
<td colspan="3">3</td>
</tr>
<tr>
<td colspan="2">4</td>
<td colspan="2">5</td>
<td colspan="2">6</td>
</tr>
<tr>
<td colspan="2">7</td>
<td colspan="2">8</td>
<td colspan="2" style="visibility: hidden">9</td>
</tr>
[Back to original message]
|