Let\'s say I have an html table with a css declared width of 750px. It has 5 columns and each column has a width of 50px, declared using css (all td\'s have a 50px width). O
You need to use the table-layout style. There's 3 possible values:
table-layout
auto
fixed
inherit
In your case you need to use table-layout: fixed on your table element.
table-layout: fixed