I have met this problem before...
I have made a smart design for a webpage involving tables containing images along the edges to yield a cool-looking rounded table look, if you know what I mean...
This looks great in IE, but in Firefox, the edge cells contain, besides the images, an empty bar letting through the pages background and wrecking up the entire look.
Piece of code:
What do I need to change in the code to make sure it displays correctly in both Firefox and IE?
Cheers,
Fedor Steeman
Geological Museum Copenhagen
Denmark
I have made a smart design for a webpage involving tables containing images along the edges to yield a cool-looking rounded table look, if you know what I mean...
This looks great in IE, but in Firefox, the edge cells contain, besides the images, an empty bar letting through the pages background and wrecking up the entire look.
Piece of code:
Code:
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="top"><img border="0" src="images/IUL.gif"></td>
<td width ="680" background="images/IUM.gif"> </td>
<td valign="top"><img border="0" src="images/IUR.gif"></td>
</tr>
<tr>
<td valign="top"><img border="0" src="images/IBL.jpg"></td>
<td width ="680" background="images/gradient_grey.jpg"></td>
<td valign="top"><img border="0" src="images/IBR.jpg"></td>
</tr>
<tr>
<td valign="top" style="width: 30px; height: 32px"><img border="0" src="images/ILL.jpg"></td>
<td width ="680" background="images/ILM.jpg"></td>
<td valign="top"><img border="0" src="images/ILR.jpg"></td>
</tr>
</table>
What do I need to change in the code to make sure it displays correctly in both Firefox and IE?
Cheers,
Fedor Steeman
Geological Museum Copenhagen
Denmark