Hi, I have two distinct tables whose column widths I wish to align. For instance <table> <tr> <td>Column 1</td> <td>Column 2</td> </tr> </table> <table> <tr> <td>Column A</td> <td>Column B</td> </tr> </table> In this example, no matter what the contents of the tables, I want Column A to lign up with column 1. (same with 2 and B). I have explored using CSS "table { table-layout: fixed; }", to just hack all table columns to be the same width. This hack doesnt work well in our case, in which this table contains multiple columns and is embedded in another table, its possible that the table will be truncated and the user cannot see whats in some columns. Any solutions?