24 lines
471 B
HTML
24 lines
471 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
/* The 3028 here was arrived at experimentally to match to
|
|
produce a scrollbar of approximately the same length as
|
|
the one of the test page squished by the overscroll. */
|
|
height: 3028px;
|
|
margin: 0;
|
|
}
|
|
div {
|
|
position: absolute;
|
|
top: 8px;
|
|
width: 200px;
|
|
height: 200px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|