ie6 Min Height problem + Hack
Hi,
ie6 doesn’t recognize the min-height attribute. So to overcome this problem we can use the below hack to solve this:
selector {
min-height: 500px;
height: auto !important;
height: 500px;
}
How it works?
Lets go through browser wise:
ff, ie7:
1. Min height property is recognizable and works fine in these.
ie6 :
1. ie6 doesn’t recognize the min-height property, so it is [...]

