T
tshad
I have a table with an image in it that is larger that the width and height.
<table class="dataTable" width="500px" height="400px" border="0"
cellpadding="0" cellspacing="0">
<tr height="400px" >
<td nowrap style="width:500px">
<asp:Image id="CompanyPicture" ImageUrl="\uploads\SmartCorner1.jpg"
runat="server"/>
</td>
</tr>
</table>
If the picture is 600 by 500, it goes over the size of the table.
With text, this would force it to wrap.
Isn't the table dimensions supposed to constrain the image and text to that
maximum size?
Thanks,
Tom
<table class="dataTable" width="500px" height="400px" border="0"
cellpadding="0" cellspacing="0">
<tr height="400px" >
<td nowrap style="width:500px">
<asp:Image id="CompanyPicture" ImageUrl="\uploads\SmartCorner1.jpg"
runat="server"/>
</td>
</tr>
</table>
If the picture is 600 by 500, it goes over the size of the table.
With text, this would force it to wrap.
Isn't the table dimensions supposed to constrain the image and text to that
maximum size?
Thanks,
Tom