summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/fixedvh.html
blob: 516a6c4bb5180d93b7652a63d73819630df06137 (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: 200vh;
  position: fixed;
  top: 0px;
  background-color: green;
}
</style>
<div id="fixed-element"></div>