blob: 592690f7cadf0688493da0181262775fa8e0a42e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<style>
#outer {
scrollbar-width: thin;
overflow: auto;
border: 5px solid black;
background: black;
width: 200px;
height: 200px;
}
#inner {
height: 300px;
}
</style>
<div id="outer">
<div id="inner"></div>
</div>
|