I have a very simple html table with a single row as follows :
<div class="container">
<table style="width: 100%; " >
<tr style="vertical-align: top;">
<td width="55%" style="border: 1px solid #e0e0e0; "> CONTENT1 </td>
<td width="5%" > </td>
<td width="40%" > CONTENT 2 </td>
</tr>
</table>
<div>
It shows up great when opened on chrome browser. However, when I try opening on IPAD, the contents of the last column get distorted and go out of the container div containing this table. How can this be fixed ?