1039454-1.html (417B)
1 <!DOCTYPE HTML> 2 <body> 3 <div id="outer" style="width:200px; height:200px; background:blue; transform:translateY(10px)"> 4 <div id="inner" style="width:200px; height:100px; background:yellow; transform:translateX(100px)"> 5 </div> 6 </div> 7 <script> 8 console.log(outer.getBoundingClientRect()); 9 outer.style.width = "400px"; 10 console.log(outer.getBoundingClientRect()); 11 outer.style.transform = "translateY(100px)"; 12 </script>