iframe2.html (377B)
1 <!DOCTYPE HTML> 2 <style> 3 html, body { 4 margin: 0; 5 padding: 0; 6 } 7 #big { 8 width: 125px; 9 height: 500px; 10 background: blue; 11 } 12 #small { 13 position: absolute; 14 top: 0; 15 left: 0; 16 width: 100px; 17 height: 100px; 18 background: green; 19 } 20 </style> 21 <div id='big'></div> 22 <div id='small'></div> 23 <script> 24 window.onload = window.parent.onFrameLoaded(); 25 </script>