|
Posted by Lόpher Cypher on 01/03/06 20:24
Barbara de Zoete wrote:
> On Tue, 03 Jan 2006 18:35:29 +0100, LΓΌpher Cypher
> <lupher.cypher@verizon.net> wrote:
>
>> Barbara de Zoete wrote:
>>
>>> How is it that data that is supposed to go into one table cell, can
>>> all of a sudden be put into two cells without breaking the logic of
>>> the table somehow?
>>
>> Answering the question, you can simply put another table into a cell
>> and span it 100% (of the cell) :)
>
> Hmm, probably not a clear question :-)
>
> IF your table is like:
> .------.-------.-----------.------.
> | desc | desc2 | desc3 | etc |
> |======|=======|===========|======|
> | data | data | data data | data |
> |------|-------|-----------|------|
> | data | data | data data | data |
> `------'-------'-----------'------'
>
> Where 'desc3' relates logically to both cells containing 'data data',
> how do you keep this logical connection with the actual _data_ [1]? Just
> putting in another datatable doesn't make sense to me, if earlier the
> data was supposed to go in to just one data cell.
>
>
> [1]unless you're trying to use tables for layout purposes, in which
> case, I've lost interest
>
Well, in this case table is used for layout.
If that doesn't do it, I see no other way.. Using span's or div's is
essentially doing the same thing - you are trying to "split" one cell
into two (you are basically replacing td's with span's/div's).
..-------.-----------.-----------------------------------------------.
| desc2 | desc3 | etc |
|=======|====================================================|======|
| data | <table><tr><td>data</td><td>data</td></tr></table> | data |
`-------'----------------------------------------------------'------'
vs.
..-------.-----------.-----------------------------------------------.
| desc2 | desc3 | etc |
|=======|====================================================|======|
| data | <span>data</span><span>data</span> | data |
`-------'----------------------------------------------------'------'
--
- lΓΌpher
---------------------------------------------
"Man sieht nur das, was man weiΓ" (Goethe)
Navigation:
[Reply to this message]
|