invalidate-css-transform-property.html 395 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <link rel="match" href="reference/invalidate-css-transform-property-ref.html" />
  3. <style>
  4. #box {
  5. width: 100px;
  6. height: 100px;
  7. background-color: red;
  8. }
  9. </style>
  10. <div id="box"></div>
  11. <script>
  12. window.onload = function () {
  13. const box = document.getElementById("box");
  14. box.style.transform = "translate(50px, 50px)";
  15. };
  16. </script>