mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|