dynamic-add-without-change-cb-1.html (355B)
1 <!DOCTYPE html> 2 <html> 3 The green square below should be centered. 4 <div style="width: 400px; height: 400px; position: absolute; 5 perspective: 600px; left: 50%; top: 50%; background: green;"> 6 </div> 7 <script> 8 document.body.offsetWidth; 9 document.querySelector("div").style.transform = "translate(-50%, -50%)"; 10 </script> 11 </html>