OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 #abs { | |
4 width:100px; height:50px; | |
5 position:absolute; | |
6 background-color:blue; | |
7 } | |
8 #next { | |
9 width:50px; height:100px; | |
10 margin-top:50px; | |
11 background-color:orange; | |
12 } | |
13 </style> | |
14 <div id=outer> | |
15 <div id=abs></div> | |
16 <div id=next></div> | |
17 </div> | |
18 <script> | |
19 window.onload = function () { | |
20 document.body.offsetTop; | |
21 outer.style.position = "relative"; | |
22 } | |
23 </script> | |
OLD | NEW |