Positionierte DIV-Bereiche bilden in Netscape 4 eigenständige Dokumente. Nicht positionierte DIV-Bereiche tun dies nicht! Die Verschachtelung hat also nur im Ausnahmefall damit etwas zu tun.
Dann wäre folgendes z.B. ein positioniertes <div> und müsste demnach anders angesprochen werden?
<div id="rahmen" name="rahmen" style="position:absolute; border:2px solid; visibility:hidden; border-color:#FF0000; top:0px; left:0px; width:100px; height:100px;">
Wenn ja - wie?
// Beispiel 1 - JavaScript-Teil
alert(document.ids.rahmenspan.paddingtop);Was ist "ids"?
"Netscape Navigator supports several properties and methods for setting CSS properties from JavaScript: document.tags, document.ids, document.classes, and document.contextual."
http://www.webreference.com/js/column72/5.html
// Beispiel 2 - HTML-Teil
<div id="rahmen">
<span id="rahmenspan">
</span>
</div>document.layers('rahmen').document.ids.rahmenspan...
Hm - da kommt dann folgendes:
JavaScript Error: document.layers is not a function
Grüße Franz