Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Table <colgroup> min-max-width ignored

Tags:

html

css

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?

like image 877
ihtus Avatar asked May 29 '14 19:05

ihtus


1 Answers

Tried to remove

table-layout:fixed;

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

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

like image 62
ihtus Avatar answered Sep 21 '22 17:09

ihtus