Alignment problem

Hi, In report generation(tree structure), i am using to give space between columns in jsp. To leave spaces, i m using so many code is looking bad. Any other alternative is there to give space?i don;t want to use table also.thanks in
[297 byte] By [Srivallia] at [2007-11-26 22:30:53]
# 1
HiIf u want to put space between column and do not want to use table then u can use non-breaking space that is &nbsp in your JSP.But best thing is that one should use table and display values in <td></td> and give appropriate alingment.Tushar
tushar81a at 2007-7-10 11:36:03 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
i m using &nbsp only. but so many &nbsp is needed.and alignment varies from one row to another.i want to align tree structure in jsp.if i use table, it is leaving blank line and the report is coming as below:+node1i want report as+
Srivallia at 2007-7-10 11:36:03 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
set cellspacing and cellpadding attribute of table to 0<table .... cellspacing=0 cellpadding=0>.........</table>
smiling_ponyaa at 2007-7-10 11:36:03 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...