background-clip-text-inside-scrollable-ref.html 430 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <style>
  3. * {
  4. scrollbar-width: none;
  5. }
  6. #text {
  7. background: linear-gradient(#6d98cc, #8a64e5);
  8. background-clip: text;
  9. color: transparent;
  10. font-size: 50px;
  11. }
  12. #scrollable {
  13. width: 300px;
  14. height: 300px;
  15. border: 1px solid black;
  16. overflow: scroll;
  17. }
  18. </style>
  19. <div id="scrollable">
  20. Clip<span id="text">Text</span>
  21. </div>