summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-anchor-position/reference/anchor-scroll-fixedpos-ref.html
blob: e73354df72dac33f7a94eaef445e80ec61e3976a (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
28
29
30
31
32
<!DOCTYPE html>
<style>
body {
  margin: 0;
  height: 2000px;
}

div {
  width: 100px;
  height: 100px;
}

#anchor {
  margin: 300px;
  background: orange;
}

#anchored {
  position: fixed;
  left: 400px;
  top: 100px;
  background: green;
}

</style>

<div id="anchor"></div>
<div id="anchored"></div>

<script>
document.documentElement.scrollTop = 200;
</script>