dynamic-addremove-2.html (520B)
1 <!DOCTYPE html> 2 <html style="background: red"> 3 <div style="transform: translate3d(0, 0, 0); position: absolute; 4 top: 0; left: 0; width: 100px; height: 100px"> 5 <div style="position: absolute"> 6 <div style="position: fixed; width: 100%; height: 100%; top: 0; left: 0; 7 background: green"> 8 </div> 9 </div> 10 </div> 11 <script> 12 onload = function() { 13 document.body.offsetWidth; 14 document.querySelector("div").style.transform = "none"; 15 } 16 </script> 17 </html>