I need to send an email which has a HTML table. I created a table with 3 columns and couple of rows. The email when viewed in a desktop pc looks okay, the table looks fine. However when the email is viewed in a apple iphone the table does not appear properly. What is going wrong and how can I fix it?
<table border="1" cellpadding="1" cellspacing="1" style="width: 327px; height: 2px; border-width: medium; border-style: none;">
<tbody>
<tr>
<td style="width: 126.567px;"><strong>Date</strong></td>
<td style="width: 75.5167px;"><strong>Marks</strong></td>
<td style="width: 106.917px;"><strong>Score</strong></td>
</tr>
<tr>
<td style="width: 126.567px;">July 2018</td>
<td style="width: 75.5167px;">231</td>
<td style="width: 106.917px;">517</td>
</tr>
<tr>
<td style="width: 126.567px;">August 2018</td>
<td style="width: 75.5167px;">-124</td>
<td style="width: 106.917px;">238</td>
</tr>
<tr>
<td style="width: 126.567px;">September 2018</td>
<td style="width: 75.5167px;">336</td>
<td style="width: 106.917px;">-833</td>
</tr>
<tr>
<td style="width: 126.567px;">October 2018</td>
<td style="width: 75.5167px;">589</td>
<td style="width: 106.917px;">296</td>
</tr>
<tr>
<td style="width: 126.567px;">November 2018</td>
<td style="width: 75.5167px;">288</td>
<td style="width: 106.917px;">1879</td>
</tr>
<tr>
<td style="width: 126.567px;">December 2018</td>
<td style="width: 75.5167px;">277</td>
<td style="width: 106.917px;">908</td>
</tr>
</tbody>
</table>