>>I am trying to create a Zebra table where each Zebra "Strip" consists of
>>two rows. I am using a classical table to create the Zebra table. In my
[quoted text clipped - 85 lines]
>
> seems to be doing the trick.. Thanks...
Nope.. It didn't work.. Sorry. Can someone out there in CSS land help me?
Thanks and sorry for the false alarm. It worked fine in Dreamweaver, but
failed in Safari both on my localhost and when I upload it.
Bruce A. Julseth schrieb:
>> <tr class="light ">
>> <td class="name">Name</td>
[quoted text clipped - 8 lines]
>> <td>Spouse Interests</td>
>> </tr>
Looks like these are header cells. So use the th element!
>> <tr class="dark">
>> <td class="name">Joe</td>
[quoted text clipped - 8 lines]
>> <td>Something Interests</td>
>> </tr>
It can/will be difficult for a screen reader user to find out which
column header cells belong to which data cell. You can associate them
via td/@headers and th/@id.
>> <div class="dark">
>> <tr>
[quoted text clipped - 10 lines]
>> </tr>
>> </div>
Neither can div be a parent element of tr, ...
> I think I found the solution..
>
[quoted text clipped - 4 lines]
>
> }
... nor can span.
However, tbody can.

Signature
Johannes Koch
In te domine speravi; non confundar in aeternum.
(Te Deum, 4th cent.)
Bruce A. Julseth - 29 Jul 2008 22:11 GMT
> Bruce A. Julseth schrieb:
>
[quoted text clipped - 59 lines]
>
> However, tbody can.
Thanks for the suggestion on using <th>. I've never used tbody so I'll have
to study how to use it, as well as td/@headers and th/@id.
.
Hope this helps. If anyone else has a suggestion, please send them to me.
Bruce
Johannes Koch - 29 Jul 2008 23:07 GMT
Bruce A. Julseth schrieb:
> Thanks for the suggestion on using <th>. I've never used tbody so I'll have
> to study how to use it, as well as td/@headers and th/@id.
See the chapter on tables
(<http://www.w3.org/TR/html4/struct/tables.html>) in the HTML 4.01
specification for tbody
(<http://www.w3.org/TR/html4/struct/tables.html#h-11.2.3>), th/@id and
td/@headers (<http://www.w3.org/TR/html4/struct/tables.html#h-11.4.1>).

Signature
Johannes Koch
In te domine speravi; non confundar in aeternum.
(Te Deum, 4th cent.)