transforms-1.html 347 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <body style="background:white">
  4. <style>
  5. div {
  6. position: absolute;
  7. width: 100px;
  8. height: 100px;
  9. border-radius: 30px;
  10. overflow: hidden;
  11. }
  12. span {
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. width: 100%;
  17. height: 100%;
  18. background: black;
  19. transform: scale(2);
  20. }
  21. </style>
  22. <div><span></span></div>
  23. </body>
  24. </html>