-----Original Message-----
From: css-d-boun...@lists.css-discuss.org 
[mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Bob Meetin
Sent: Monday, May 03, 2010 11:21 AM
To: CSS-D
Subject: [css-d] roots tree

> I have a task to create a roots type family tree.
> Recommendations please? 

Well, if you're looking for a non-table solution, you can find an example here 
[1] that you might be able to adapt.

But if you're set on tables, you'll just need the following:

table {
  border-collapse: collapse; /* share borders between cells */
}

and then variations on 

td {
  border-left (or right, or top, or bottom): 1px solid black;
}

You can have the "middle" lines (instead of top or bottom) if you do a 
rowspan=2 for your content cells.

[1]: http://www.indiana.edu/~intlserv/ois/org_chart.php
______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to