Hello, I am creating a table in my website with coldfusion script. Here is my simplified script thus far: <table width="90%" border="1" cellspacing="9" cellpadding="0"> <tr> <td width="30%"><div align="center"><Heading1</div></td> <td width="30%"><div align="center">Heading2</div></td> <td width="30%"><div align="center">Heading3</div></td> </tr> <cfoutput query = "myquery" group="Heading1"> <tr> <td><a href="#myquery.LINK#">#myquery.Heading1#</a></td> <td>#myquery.Heading2#</td> <td>#myquery.Heading3#</td> </tr> </cfoutput> </table> Code (markup): As you can see, i've been able to modify how the column widths are displayed. The row heights, however, are too large. Meaning, I have a lot more space between each row then i'd like. I tried modifying this with CSS attributes, with no luck (nor do I want to do it this way). Is there code that I can apply, similar to the <td width="">? If so, how can I do it without using a percentage value (since the vertical length of the page shall be infinite, depending on the dynamic results from the database). Thanks! Nick
Are you sure the undesired space between your rows is not being caused by the cellspacing attribute you have set to "9" ?
I changed it to 1 and 0. It seems like it may have made it better, but there is still unwanted space. Any more ideas? Thanks.