If you have problems using two tables that should match column widths then the css attribute of ‘table-layout: fixed;’ will help in most cases.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<table id='example1totals' style='table-layout: fixed;'> <tr> <td width='24%'>TOTALS</td> <td>another column</td> //ect </tr></table> <br <table id='example2totals' style='table-layout: fixed;'> <tr> <td width='24%'>TOTALS</td> <td>another column</td> //ect </tr></table> |