|
Posted by richard on 12/31/07 18:06
On Mon, 31 Dec 2007 12:45:47 -0500, "Jonathan N. Little"
<lws4art@centralva.net> wrote:
>richard wrote:
>> http://littleworldofours.com/1960d.html
>>
>> I know you're gonna run it through the validator. BTDT.
>> What cleanup is needed will be done later.
>>
>> Locate "EBB TIDE".
>> What I want to do is quite simple, but when I try it, I get an
>> erroneous table cell that should not be there.
>>
>> On the very right side of each entry are two table cells that show a
>> "Week" and below it shows a number.
>>
>> 1)EBB TIDE.............. .................... Jan 02
>> 2)Bobby Freeman..... Josie 872......11
>> 3)Roy Hamilton......... Epic 9068
>>
>> In rows 2 and 3 above, I want only the table cells to show as a single
>> cell as normal. Then in column 3, merge rows 2 and 3.
>>
>> However, when I try a rowspan, it doesn't work right.
>>
>> So where do I put the rowspan to make it right?
>>
>>
>You don't want a *row*span but a colspan.
>
><tr>
> <td colspan="2" class="atitle">EBB TIDE</td>
> <td class="wks1">Jan 02</td>
></tr>
>
><tr>
> <td class="artist">Bobby Freeman</td>
> <td class="label">Josie 872</td>
> <td class="wks2" colspan="2">11</td>
></tr>
>
><tr>
> <td class="artist">Roy Hamilton</td>
> <td class="label">Epic 9068</td>
></tr>
Huh?
A column span does just that, merges two or more "columns" in a series
of rows.
I have 3 rows, each row has 3 cells.
row 1 merges col 1 and col 2 with colspan.
That works fine.
In rows 2 and 3, I want to merge col 3 as one cell.
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?
[Back to original message]
|