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.