12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .div1{
- width: 300px;
- height: 100px;
- border:5px solid green;
- overflow:scroll;
- }
- .div2{
- width: 1000px;
- height: 100px;
- background-image: linear-gradient( to right,red,blue);
- }
- ::-webkit-scrollbar{
- display: none;
- width: 0;
- height: 0;
- }
- </style>
- </head>
- <body>
- <div class="div1">
- <div class="div2"></div>
- </div>
- </body>
- </html>
|