I usually stay away from anything that cannot be done in IE 6 without a
hack, but I've got a client who "loves" a design I did before I realized
that the main container would need to be "held open" vertically under
certain circumstances.

So, now I'm kinda stuck - can anyone help?


Hi Cole,
You can try this if you want to use overflow and min-height at the same time:

#zContainer {
   overflow:hidden;
   min-height:15em;
   _height:15em;
   _overflow:visible;
   _overflow-x:hidden;
}

As a side note, if you want to use min-height using valid declarations in one single block, you can try:

#zContainer {
   min-height:15em;
   height:auto !important;
   height:15em;
}

HTH,
---
Regards,
Thierry | www.TJKDesign.com


*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to