February 7, 2001 - Overlapping Frames | WebReference

February 7, 2001 - Overlapping Frames

Yehuda Shiran February 7, 2001
Overlapping Frames
Tips: February 2001

Yehuda Shiran, Ph.D.
Doc JavaScript

One of the advantages of the new IFRAME tag in Internet Explorer 5.5 and Netscape 6 is that you can stack them on top of each other. This page shows three frames overlapping each other. Here is the code to implement these three frames:

<IFRAME NAME="Frame1" SRC="010131.html" style="position:absolute; top:20; left:50;">
</IFRAME>
<IFRAME NAME="Frame2" SRC="010131.html" style="position:absolute; top:60; left:90;">
</IFRAME>
<IFRAME NAME="Frame3" SRC="010131.html" style="position:absolute; top:100; left:130;">
</IFRAME>