490176-1.html (389B)
1 <html> 2 <head> 3 <style type="text/css"> 4 5 body, p { 6 display: table; 7 position: absolute; 8 } 9 10 </style> 11 12 <script type="text/javascript"> 13 14 function boom() 15 { 16 var n = document.getElementById("n"); 17 var b = document.body; 18 var next = n.nextSibling; 19 b.removeChild(n); 20 b.insertBefore(n, next); 21 } 22 23 </script> 24 </head> 25 26 <body onload="boom();"> 27 <div>A B</div> 28 <p id="n">C D</p> 29 </body> 30 31 </html>