Ethan King wrote:
> 
> I was trying to make a cell in a table 1 pixel tall by using a method like
> this:
> 
> <table width="100%" border="0" cellspacing="0" cellpadding="0">
>   <tr>
>     <td bgcolor="#CCCCCC"><img src="images/spacer.gif" width="100"
> height="1"></td>
>   </tr>
> </table>

The extra height is caused by the line layout; <img> is by default inline.
Give the image "display: block".

Reply via email to