8_页面滚动.html 688 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .div1{
  9. width: 300px;
  10. height: 100px;
  11. border:5px solid green;
  12. overflow:scroll;
  13. }
  14. .div2{
  15. width: 1000px;
  16. height: 100px;
  17. background-image: linear-gradient( to right,red,blue);
  18. }
  19. ::-webkit-scrollbar{
  20. display: none;
  21. width: 0;
  22. height: 0;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div class="div1">
  28. <div class="div2"></div>
  29. </div>
  30. </body>
  31. </html>