mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 02:13:08 +09:00
29 lines
429 B
HTML
29 lines
429 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.separator {
|
|
height: 20px;
|
|
background-color: blue;
|
|
}
|
|
#overflow {
|
|
overflow-y: scroll;
|
|
height: 200px;
|
|
margin: 20px 0;
|
|
background-color: lightgreen;
|
|
}
|
|
#child {
|
|
height: 160px;
|
|
margin: 40px 0;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="separator"></div>
|
|
<div id="overflow">
|
|
<div id="child"></div>
|
|
</div>
|
|
<div class="separator"></div>
|
|
</body>
|
|
</html>
|