View Single Post
  #4 (permalink)  
Old 01-31-2008, 10:43 AM
Dubbya's Avatar
Dubbya Dubbya is offline
WebProWorld 1,000+ Club
 

Join Date: Nov 2006
Location: Steinbach, Manitoba, Canada
Posts: 1,194
Dubbya RepRank 3Dubbya RepRank 3
Default Re: Table Display in Firefox Problem

As usual, Wige is correct. Here's what he's trying to say:

You can apply a CSS style specifically to the image table by assigning it an id. There's no need to specify the cellpadding in the table tag and the CSS style will work the same in any browser.

For example:

Code:
<style>
  table#imagetable td{ padding: 10px; }
</style>

<table id="imagetable" border="1">
  <tr>
    <td>put an image in here</td>
  </tr>
</table>
.02
__________________
Printer ink, inkjet & toner cartridges in Canada
"Price-wise printing supplies"
inkjetOasis.ca

Last edited by Dubbya : 01-31-2008 at 10:45 AM.
Reply With Quote