blob: c430b532df913595a0b9f5354add457f3761870d (
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
25
26
27
|
<!DOCTYPE html>
<html reftest-resolution="1.5">
<head>
<meta name="viewport" content="width=device-width">
<style>
body {
margin: 0;
height: 2000px;
overflow: hidden;
}
#tall {
height: 100vh;
}
#sticky {
position: absolute;
bottom: 0;
width: 100%;
height: 500px;
background: repeating-linear-gradient(90deg, transparent, transparent 20px, black 20px, black 40px);
}
</style>
</head>
<body>
<div id="tall"></div>
<div id="sticky"></div>
</body>
</html>
|