move-item-ref.html 477 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <style type="text/css">
  6. #a_box {
  7. overflow:auto;
  8. width:100px;
  9. height:100px;
  10. border:1px solid black;
  11. }
  12. #item {
  13. transform: translate(80px, 80px);
  14. width:40px;
  15. height:40px;
  16. position:relative;
  17. background-color:#666;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div id="a_box">
  23. <div id="item"></div>
  24. </div>
  25. </script>
  26. </body>
  27. </html>