JonMarc Wright wrote:
>>    img { display: block; }
>> or
>>    img { vertical-align: top; }
>> should help.
> 
> using display: block will do fine for eliminating the double spacing between
> your table rows.  it sounded like you wanted the images to have no space
> around them at all (in other words no blue background showing through).  If
> that is the case, you will need to add the following attribute to your
> <table> element:
> 
> cellpadding="0"
> 
> that will eliminate the 1px of space between each image so there is no blue
> border showing through.

   td, th { padding: 0; }
in the CSS has the same effect as
   cellpadding="0"
in HTML.

~fantasai

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to