Min-Width, Max-Width

June 8, 2010, by A. U. Crawford

IE still has problems with max-width, min-width, max-height, min-height.

to get them you just use this css technique.

The CSS:
td {
   max-width: 110px;
   width: auto;
   width: 110px;
   }
div {
   max-width: 110px;
   width: auto;
   width: 110px;
   }`

It works for both max and min, width and height.