table w/runded corners

liunx

Guest
Below is some code I am utilizing for a table with rounded corners. Problem is, when the table displays in Netscape 7.0, there is white space between the top row and middle row as well as between middle row and bottom row. I am a bit baffled as to the problem. Here is the code, if anyone can help, I'd appreciate it.<br />
<br />
<table width="177" border="0" cellpadding="0" cellspacing="0" bgcolor="#cccccc"><br />
<tr> <br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"/images/top_left.gif" width="10" height="10"></td><br />
<td width="157"><img src=http://www.webdeveloper.com/forum/archive/index.php/"/images/gray_dot.gif" width="1" height="1"></td><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"/images/top_right.gif" width="10" height="10"></td><br />
</tr><br />
<tr> <br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"/images/gray_dot.gif width="10" height="10"></td><br />
<td width="157">content</td><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"/images/gray_dot.gif" width="10" height="10"></td><br />
</tr><br />
<tr> <br />
<td><img class="bleft" src=http://www.webdeveloper.com/forum/archive/index.php/"/images/bot_left.gif" width="10" height="10"></td><br />
<td width="157"><img src=http://www.webdeveloper.com/forum/archive/index.php/"/images/gray_dot.gif" width="1" height="1"></td><br />
<td><img class="bright" src=http://www.webdeveloper.com/forum/archive/index.php/"/images/bot_right.gif" width="10" height="10"></td><br />
</tr><br />
</table><!--content-->Originally posted by blurredline <br />
Below is some code I am utilizing for a table with rounded corners. Problem is, when the table displays in Netscape 7.0, there is white space between the top row and middle row as well as between middle row and bottom row. I am a bit baffled as to the problem. Here is the code, if anyone can help, I'd appreciate it. <br />
Try these<br />
<br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"/images/top_left.gif" width="10" height="10"></td><br />
<br />
<td align="left"valign="top"> Or right and bottom when it is that corner.<!--content-->
 
Back
Top