372553-1.html (381B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 5 <style> 6 7 body { 8 width: 5em; 9 font-family: monospace; 10 border: 1px solid yellow; 11 } 12 13 body:first-letter { 14 color: blue; 15 } 16 17 </style> 18 19 </head> 20 <body> 21 22 <span><span><span id="sss">Aaa </span></span>Bbbbbbbbbbbbbb<span></span></span> 23 24 <script> 25 document.body.offsetWidth; 26 sss = document.getElementById("sss"); 27 sss.remove(); 28 </script> 29 30 </body> 31 </html>