rss
twitter
  •  

Min-Height Hack for IE6

| Posted in CSS, XHTML |

0

For Min-Height working in IE6 this was the easiest way of doing it. In browser like IE6 won’t take min-height with this simple hack you can give the min-height to IE6.

selector {
  min-height:500px;
  height:auto !important;
  height:500px;
}

Post a comment