I have a table with a cell on the bottom right with an image to create a
rounded corner effect:
<table cellpadding="0" cellspacing="0" border="1">
<tr><td rowspan="2">asdfsadf</td>
<td align="right" valign="top">asdfsaf</td></tr>
<tr><td align="right" valign="bottom">
<img src="images/corner.gif" width="11" height="11"></td>
</tr></table>
With the old-fashioned method as the above would work just fine, however,
as soon as I include at the top of the doc: ..
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
... a vertical padding, spacing or margin is created above and below the
image or/and the text elements. Is there a way to avoid this?