I'm making a table with round corners, and everything looks fine on IE, but on FireFox the table is bigger. How can I fix that.
Here is my table.
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr align="left" valign="middle">
<td height="45" colspan="5" class="search">
<!--- SOME CODE IN HERE --->
</td>
<td width="20" rowspan="11"> </td>
<td width="531" rowspan="11">
<!--- SOME CODE IN HERE --->
</td>
</tr>
<tr height="25">
<td width="11"> </td>
<td colspan="4" valign="bottom"><img src="images/cat.jpg" alt="" width="236" height="20" /></td>
</tr>
<!--- FROM HERE DOWN IT DOES NOT DISPLAY THE SAME ON IE OR FIRE FOX --->
<tr>
<td width="11"> </td>
<td width="192" height="22" class="cattext">Artistic</td>
<td width="138" class="cattext">Memories</td>
<td width="78" align="right" valign="top" class="cattext"><img src="images/right_corner.jpg" alt="" width="43" height="19" /></td>
</tr>
<tr>
<td width="11"> </td>
<td width="192" height="22" class="cattext">Celebrities For CF</td>
<td colspan="2" class="cattext">Personal Stories</td>
</tr>
<tr>
<td width="11"> </td>
<td width="192" height="22" class="cattext">Commercials</td>
<td colspan="2" class="cattext">Pets</td>
</tr>
<tr>
<td width="11"> </td>
<td width="192" height="22" class="cattext">Exercise</td>
<td colspan="2" class="cattext">Products</td>
</tr>
<tr>
<td width="11"> </td>
<td width="192" height="22" class="cattext">Fundraisers/Programs</td>
<td colspan="2" class="cattext">Research</td>
</tr>
<tr>
<td width="11"> </td>
<td width="192" height="22" class="cattext">Humor</td>
<td colspan="2" class="cattext">Transplant Stories</td>
</tr>
<tr>
<td width="11"> </td>
<td width="192" height="19" class="cattext" style="background-image:url(images/left_corner.jpg); background-position:left; background-repeat:no-repeat;">Just For Fun</td>
<td class="cattext">Vacations</td>
<td align="right" valign="bottom" class="cattext"><img src="images/right_cornerbt.jpg" alt="" width="20" height="19" /></td>
</tr>
<tr>
<td width="11"> </td>
<td width="192"> </td>
<td colspan="3"> </td>
</tr>
<tr>
<td width="11"> </td>
<td width="192"> </td>
<td colspan="3"> </td>
</tr>
</table>
|