It is possible to simulate 100% height in gecko based browsers?
Simulate? Gecko supports 100% height... just keep in mind that it's 100% of the parent's height, which is only useful if the parent's height is not auto, so you probably want to specify a 100% height on body and html too:
html, body { height:100%; }
and also on any other parent nodes you may have... _______________________________________________ mozilla-embedding mailing list [EMAIL PROTECTED] http://mail.mozilla.org/listinfo/mozilla-embedding
