Different table width calculation on 2012 platform when it is located within a floating element.
This issue occurs when:
Avoid the float property of any elements.
<div style="width: 400px; height: 30px;">
<div style="float: left;">
<table style="width: 100%; border: 1px;">
<tr>
<td style="width: 200px; height: 50px;">
<div>1111</div>
</td>
</tr>
</table>
</div>
</div>
<div style="width: 400px; height: 30px;">
<div>
<table style="width: 100%; border: 1px;">
<tr>
<td style="width: 200px; height: 50px;">
<div>1111</div>
</td>
</tr>
</table>
</div>
</div>
See also
Refer to files in this package.