Revision: 35076
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at November 2, 2010 06:25 by jschlick
Initial Code
selector { height: 10em; /* min-height for IE. Must be declared above declaration for other browsers! */ } selector:empty { min-height: 10em; /* min-height for browsers other than IE */ height: auto !important; /* Override previously declared height for browsers other than IE */ } Â or even simpler: selector { min-height: 10em; /* min-height for browsers other than IE */ height: auto !important; /* Override declared height for browsers other than IE */ height: 10em; /* min-height for IE */ }
Initial URL
Initial Description
Initial Title
cross-browser minimum height
Initial Tags
css, ie
Initial Language
CSS