blob: 87aafae1394f6814d9b1bdedbe32cd28a462ea83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1252">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
html {
scrollbar-width: none;
}
body {
background: red;
margin: 0;
}
.tall {
height: 600vh;
background: green;
}
</style>
</head>
<body>
<div class="tall"></div>
</body>
</html>
|