Table <colgroup> min-max-width ignored

css, html

Solution

Tried to remove

table-layout:fixed;

from table style, and that seems to make col have a min-width...

http://jsfiddle.net/ihtus/mGgZ9/

Problem

Having this http://jsfiddle.net/ihtus/EcU4x/ For the 1st column: ``` min-width: 100px; max-width: 200px; ``` But if minimize browser window, 1st column width is getting less than 100px. Need to have col widths in a range 100-200px. Any workaround?

Original source

Related problems