Solution to invalid min height in IE6

web front end nine thousand three hundred and fourteen 14 years ago (2011-06-24)
The css style of min height is often used when writing HTML, but sometimes min height IE6 In order to keep the minimum height when there is less content, we will use the min height attribute to control. How to solve the min height compatibility problem under IE6? The following is the compatible code: [CODE_HTML]#min-height { min-height:100px; height:auto !important; height:100px; overflow:visible;}[/CODE_HTML]