I have a table with 3 columns. The first row of each column has an img and I have given max-width of the table as 100%. Each image has an actual width of 200 px.
<table id="table1_id">
<tr id="row1_id">
<td>
<img src="image 1 url"/>
</td>
<td>
<img src="image 2 url"/>
</td>
<td>
<img src="image 3 url"/>
</td>
</tr>
</table>
Problem is that this is rendering properly everywhere except iPhone. Only on iPhone (have tried with 4S and 5S) the last column image is only showing half, whereas my expectation is obviously that the columns (therefore the images) resize themselves as per the iPhone screen width.
One can check the actual website at www.checkgaadi.com via iPhone. Here is the fiddle also - https://jsfiddle.net/s1gfbwvy/
During testing I find that when I resize the browser window to simulate various phone widths, the screen is not responsive (resize does not happen) when I go below browser window width of 290px.
Can someone help please. I am a newbie and sorry if this is a basic question. I am stuck with this for a full day now.