I got a table with 4 columns, A, B, C and D. I want B and C to have a fixed width of 75px
and A to have a max width of 100px
. However I cannot figure out how to accomplish this, is seems that max-width
is being ignored.
JsFiddle: http://jsfiddle.net/bt4rzcw2/16/
<colgroup>
<col style="max-width: 100px" />
<col span="2" style="width: 75px;" />
<col style="width: auto" />
</colgroup>