Is it possible to have a textarea box with fixed dimensions, followed by a table of the same size that does not dynamically resize when the window is resized? I attempted to achieve this by styling the table with
table{ table-layout: fixed; width: 100px; }
in the HTML, but it did not work as expected.
To see the issue in action, check out this example.