When design form, you have to use width
in Percentage instead using Fixed Width.
Don't Use something like...
<table style="width: 1000px">
<tr>
<td style="width: 1000px">
</td>
<td style="width: 1000px">
</td>
</tr>
</table>
and you need to use something like...
<table style="width: 100%">
<tr>
<td style="width: 50%">
</td>
<td style="width: 50%">
</td>
</tr>
</table>
Hope this will help you.