Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unwanted Table cell space

Status
Not open for further replies.

cbrooks

Programmer
Joined
Nov 26, 2001
Messages
2
Location
US
I have tried h=0 and v=0, as well as border=0 for this table that has extra spacing.

what to do? I have looked 8 pages back in various threads in this forum, but cannot seem to find an answer to this problem.

any advice?
 
I had similar issues.....I solved it in the table properties box by making cell pad and cell space =0. Apparently they default to 2 if left blank.

Hope this helps.

Nick
 
yes, I did change the cellpad and cellspace to 0 for the table. this did not solve the problem unfortunately.
 
Take out carige returns in you table :


Do this :

<table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;>
<tr>
<td>data here</td>
</tr>
</table>


Instead of this :

<table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;>
<tr>
<td>
data here
</td>
</tr>
</table>
Regards

Big Dave

davidbyng@hotmail.com


** If I am wrong I am sorry, but i'm only trying to help!! **

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top