mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
19 lines
290 B
HTML
19 lines
290 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<style>
|
||
|
|
.container {
|
||
|
|
width: 200px;
|
||
|
|
height: 200px;
|
||
|
|
overflow: scroll;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<div style="background: green; height: 40px;"></div>
|
||
|
|
<div style="height: 300px;"></div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|