1 (edited by Rador8 2009-06-12 19:48)

Topic: small space with Firefox and explorer

Hello,

I have a problem with this page : [edited]

Normally, you should see this : [edited]
It is ok with Internet Explorer

But with Firefox and Opera, you see this : [edited]

There is a space on the bottom of the td, beteween the image and the end of the td of the table...

Do you have a solution (another solution than change all my web site with div and forget tables)?

My css is here :
[edited]

Thanks for your help !

2

Re: small space with Firefox and explorer

td img {display: block}

Its a well known problem. If you ever see unexpected space around an image then applying display:block will usually fix it.

3 (edited by Rador8 2005-11-10 23:53)

Re: small space with Firefox and explorer

Hi,

Thanks for help.

I set this in my css and it's ok :

img
  {
  border: none;
  display: block;
  }