mask-layer-1.html 460 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <meta charset="utf-8">
  4. <title>border-radius should work correctly for elements with perspective</title>
  5. <style>
  6. #a {
  7. position: relative;
  8. width: 300px;
  9. height: 300px;
  10. border-radius: 10px;
  11. overflow: hidden;
  12. background: red;
  13. perspective: 1000px;
  14. }
  15. #b {
  16. position: relative;
  17. background: green;
  18. height: 100%;
  19. width: 10000px;
  20. transform: translateX(0px);
  21. }
  22. </style>
  23. <div id="a">
  24. <div id="b"></div>
  25. </div>