Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have seen yahoo ui using div for every node of the tree. Is this a good thing to do. Seems like every node including leaf node is heavily nested. I saw a div, table, tr, td being used for creating a node. Is this necessary. Is there a better way to do the same.

I tried to us tr for every node. Are there any issues with this approach

Thanks

share|improve this question
Using canvas would make this a whole lot easier... I tried doing this with divs at the end of last summer and... IE just wouldn't cooperate. If you want to connect divs together with a line [connecting parent and child graphically] that's a pain too... – ItzWarty Jun 1 '10 at 1:54
Thanks for responding – Susan Jun 4 '10 at 18:07

1 Answer

Try this: Pure CSS Tree

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.