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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to take off space between rows ??

Status
Not open for further replies.

mlotfi

Programmer
Oct 14, 2003
26
US
Hi, I have a table that has these rows :


<tr>
<td align="right" valign="top">
<img src= "<bean:write name='ctxtPath'/>/coeuslite images/c_username.gif" border=0>
</td>
<td>&nbsp;</td>
<td valign="top" ><img src= "<bean:write name='ctxtPath'/>/coeuslite images/c_password.gif" ></td>
</tr>
<tr>
<td align="right" valign="top"><html:text property="username" styleClass="textbox" maxlength="8" /></td>
<td>&nbsp;</td>
<td align="left" valign="top"><html:password property="password" styleClass="textbox"/></td>
</tr>


How to take off the space between the images and the input texts ?
thanks
 
first off, you have pasted java server page code or some other language. this is the HTML/XHTML/CSS forum. therefore, best practice dictates that you render your page in a browser, do a view > source, then paste the result here.

that being said, you can remove your [tt]<td>&nbsp;</td>[/tt] cells, which do nothing but add space and eat up bandwidth.



*cLFlaVA
----------------------------
[tt]somebody set up us the bomb![bomb][/tt]

[URL unfurl="true"]http://www.coryarthus.com/[/url]
 
...and third, try to remove all whitespace between <td> and <img /> and </td>. IE sometimes tries to render that whitespace as actual space for the layout.
 
This code doesn't give any idea about what you are saying...just check your table attributes, cellspacing and cellpadding or any other CSS applied to that table.

Prashant
 
In addition, you can try this:

Code:
<style>
  table {
    border-collapse  : collapse;
  }
  img {
    border-width     : 0;
  }
</style>


Jakob
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top