1315632-1.html (239B)
1 <!DOCTYPE html> 2 <style> 3 .x { position: absolute; color: red; } 4 .y { color: green; } 5 </style> 6 <div class=x>hello</div> 7 <script> 8 document.body.offsetHeight; 9 document.querySelector(".x").className = "y"; 10 document.body.offsetHeight; 11 </script>