Yansky schrieb:
> 
> thumblewend wrote:
>> If you add:
>> height:375px;
>>
> 
> Hi, thanks for your replies. Unfortunately I can't set the div height to
> 375px in the CSS because I want that to be the minimum height (I mean I
> could set it as min-height in the CSS but then I'd have problems with IE).

Then you should use min-height and for IE 6 use height, it's actually 
min-height as long as you don't declare overflow other than visible 
(default).

#demo-show div {
     height: 375px;
     min-height: 375px;
}
*>#demo-show div {
     height: auto;
}


-- Klaus


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to