svg-inside-scroll-container.html 924 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <link rel="match" href="reference/svg-inside-scroll-container-ref.html" />
  3. <style>
  4. * {
  5. scrollbar-width: none;
  6. }
  7. #scrollable {
  8. height: 300px;
  9. overflow: scroll;
  10. }
  11. svg {
  12. display: block;
  13. }
  14. </style>
  15. <div id="scrollable">
  16. <svg width="100" height="100">
  17. <rect width="100" height="100" fill="green" />
  18. </svg>
  19. <svg width="100" height="100">
  20. <rect width="100" height="100" fill="green" />
  21. </svg>
  22. <svg width="100" height="100">
  23. <rect width="100" height="100" fill="green" />
  24. </svg>
  25. <svg width="100" height="100">
  26. <rect width="100" height="100" fill="green" />
  27. </svg>
  28. <svg width="100" height="100">
  29. <rect width="100" height="100" fill="green" />
  30. </svg>
  31. </div>
  32. <script>
  33. const scrollContainer = document.getElementById("scrollable");
  34. scrollContainer.scrollTop = 100;
  35. </script>