blob: 587df004733edbdaf108b66f3370bed75ef18950 (
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
|
<!DOCTYPE html>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, minimum-scale=0.5" />
<style>
html {
width: 100%;
height: 100%;
scrollbar-width: none;
}
body {
width: 200%;
height: 2000px;
margin: 0;
padding: 0;
}
#fixed-element {
width: 100%;
height: 200%;
position: fixed;
top: 0px;
background-color: green;
}
</style>
<div id="fixed-element"></div>
|