...not really =0
however, there is one IE quirk I'd like to emulate in other browsers, namely IE's habit of ignoring the specified height of a block element and expanding it to fit its contents.
anyone know how this can be done?
Sure -- don't specify the height of the block.
It sounds as though you might be looking for a minimum height but not a maximum, izzat right?
#blob
{
min-height: 100px;
}
/* IE ONLY */
* html #blob
{
height: 100px;
}Paul
______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
