Table question
Post removed (X-No-Archive: yes)
Re: Table question
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>
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Re: Table question
Post removed (X-No-Archive: yes)
Re: Table question
On 2007-12-31, richard <I.dont.care [at] 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>
Re: Table question
richard wrote:
> On Mon, 31 Dec 2007 12:45:47 -0500, "Jonathan N. Little"
> <lws4art [at] 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>
>
Nope I royally screwed up and got it "bass-ackwards", (too much xmas
cheer I guess)Should be *row*span
<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" rowpan="2">11</td>
</tr>
<tr>
<td class="artist">Roy Hamilton</td>
<td class="label">Epic 9068</td>
</tr>
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com