Advertisement
stqr-crossed

rainbow scrollbar

Jun 15th, 2024
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <style>
  2. p{
  3. height: 150px;
  4. width: 150px;
  5. overflow: scroll;
  6. overflow-x: hidden;
  7. border: solid black 2px;
  8. padding: 12px;
  9. }
  10.  
  11. ::-webkit-scrollbar{
  12. width: 12px;
  13. }
  14. ::-webkit-scrollbar-thumb{
  15. box-shadow: inset 0 0 10px 0px #fff;
  16. border: 1px solid black;
  17. }
  18. ::-webkit-scrollbar-track{
  19. background: linear-gradient(0deg, rgba(255,199,189,1) 0%, rgba(255,245,224,1) 24%, rgba(232,255,222,1) 35%, rgba(218,255,255,1) 54%, rgba(231,201,255,1) 73%, rgba(255,201,222,1) 100%);
  20. border: 1px solid black;
  21. }
  22. </style>
  23.  
  24. <p> text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text </p>
Tags: scrollbar
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement