I was making a table to contain 4 images soo my code was like this
<table width="85%">
<tr>
<td><img src="./images/1.jpg" ></td>
<td><img src="./images/1.jpg" ></td>
<td><img src="./images/1.jpg" ></td>
<td><img src="./images/1.jpg" ></td>
</tr>
</table>
and my css stylesheet looks like this
<style type="text/css">
table{ max-width:1000px;}
td {width:25%;}
td img{width:100%; max-width:240px;}
</style>
On ie9 the images gets 100% width of the browser window instead of getting the 100% width of td tag which is 25% of the table! but it works perfectly in firefox, opera and chrome! i will be grateful for any kinda help!