I have been having a problem trying to get IE and Chrome to handle tables and images the same.
I originally had issues with IE not constraining (resizing) large images and for some reason Chrome was making the images 1/10 the size of normal sized images. I fixed that for Chrome by adding a width of 20% on the td that held the image and 80% on the td that had paragraphs of text.
This worked fine for Chrome as shown in the sample code of the table below.
But IE still does not constrain a large image. So if all the images are around 50px but you have one that is about 300px the 2nd td gets pushed all the way to the right. Why doesn't the width of 20% constrain the image in IE as it does in Chrome.
Thanks,
Tom
I originally had issues with IE not constraining (resizing) large images and for some reason Chrome was making the images 1/10 the size of normal sized images. I fixed that for Chrome by adding a width of 20% on the td that held the image and 80% on the td that had paragraphs of text.
This worked fine for Chrome as shown in the sample code of the table below.
But IE still does not constrain a large image. So if all the images are around 50px but you have one that is about 300px the 2nd td gets pushed all the way to the right. Why doesn't the width of 20% constrain the image in IE as it does in Chrome.
Code:
<table width=725 border="0" cellspacing="0" cellpadding="0">
<tr>
<td style="width:20%">
<a title="something" href="[URL unfurl="true"]www...">[/URL]
<img src="/images/docimage.gif"/></a>
</td>
<td style="width:80%">
Some text
</td>
</tr>
</table>
Thanks,
Tom