17 lines
245 B
HTML
17 lines
245 B
HTML
<!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>
|