Okay, ich habe es jetzt mit einer aufwendigen JavaScript-Aktion gelöst.
************************
<script type="text/javascript">
function ErzeugeDiv () {
var y;
if (self.innerHeight) // all except Explorer
{
y = self.innerHeight-175;
}
else if (document.documentElement && document.documentElement.clientHeight)
// Explorer 6 Strict Mode
{
y = document.documentElement.clientHeight-165;
}
else if (document.body) // other Explorers
{
y = document.body.clientHeight-165;
}
document.write('<div id="Submenu" style="height:' + y + 'px; overflow:auto;">');
}
ErzeugeDiv();
</script>
Zu platzierender Inhalt
</div>
Und es klappt nun wunderbar in IE, FF und Netscape! :)
Trotzdem Danke für die Hilfe!
Gruß
Stefan