clip-border-radius-with-css-transform-ref.html 375 B

123456789101112131415161718192021
  1. <!doctype html>
  2. <style>
  3. * {
  4. margin: 0;
  5. }
  6. .outer {
  7. position: absolute;
  8. overflow: hidden;
  9. border-radius: 9999px;
  10. width: 300px;
  11. height: 300px;
  12. }
  13. .inner {
  14. position: absolute;
  15. top: 0px;
  16. bottom: 0px;
  17. width: 300px;
  18. height: 300px;
  19. background: mediumspringgreen;
  20. }
  21. </style><body><div class="outer"><div class="inner"></div>