| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <style> | |
| #container { | |
| width: 100px; | |
| height: 100px; | |
| border: 3px solid black; | |
| overflow: scroll; | |
| } | |
| #container::-webkit-scrollbar { | |
| display: none; | |
| } | |
| #canvas { | |
| width: 50px; | |
| height: 200px; | |
| background-color: gray; | |
| border: 1px solid black; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div id="container"> | |
| <div id="canvas"></div> | |
| </div> | |
| </body> | |
| </html> |