May 27
I came across this problem with older browsers. If your table cell uses percentage for padding, for example:
<td style=”padding-right:1%”>text</td>
then that cell will expand off the screen.
Instead, use pixels for measurement, for example:
<td style=”padding-right:15px”>text</td>
Recent Comments