Click to See Complete Forum and Search --> : rounded rectangle table data


mfisher_jr
04-15-2003, 08:19 PM
'm looking for code to display a rectangle around my table data that has rounded edges. The following has the rounded edges for the top edge but the line between the two corner gifs does get filled in.
Does anyone have any suggestions ?

Thanks,
Marty

<tr>
<td valign="top" background="topEdge.gif"><img src="topLeftCorner.gif" width="14" height="14" >
</td>
<td valign="top" background="topEdge.gif"><img src="blank.gif" width="14" height="14">
</td>
<td valign="top" background="topEdge.gif"><img src="topRightCorner.gif" width="14" height="14" >
</td>
</tr>

mfisher_jr
04-16-2003, 03:56 AM
Trail and Error produced as satisfactory solution:

<tr>
<td style="background-image: url(topEdge.gif); background-repeat:repeat-x;
background-position:1pt 1pt;">
<img src="topLeftCorner.gif">
</td>
<td style="background-image: url(topEdge.gif); background-repeat:repeat-x;
background-position:1pt 1pt;">
<img src="blank.gif">
</td>
<td><img src="topRightCorner.gif">
</td>
</tr>