I\'m trying to create a page with a number of static html tables on them.
What do I need to do to get them to display each column the same size as each other column
In your CSS file:
.TableHeader { width: 100px; }
This will set all of the td tags below each header to 100px. You can also add a width definition (in the markup) to each individual th tag, but the above solution would be easier.
td
th