383979-1.xhtml (426B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <script> 4 5 function boom() 6 { 7 document.getElementById("div1").appendChild(document.getElementById("div2")); 8 } 9 10 </script> 11 12 <style type="text/css"> 13 14 #s1, #s2 { 15 font: 8pt arial; 16 } 17 18 #div1 #s1, #div1 #s2 { 19 font-size: 20pt; 20 } 21 22 </style> 23 </head> 24 25 <body onload="boom();"> 26 27 <div id="div1"></div> 28 <div id="div2"><span id="s1"><span id="s2">foo</span></span></div> 29 30 </body> 31 </html>