summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-anchor-position/anchor-scroll-overflow-hidden-ref.html
blob: b674998a5db1f347af82bde1f5efb4261a3732af (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
33
34
35
36
37
<!DOCTYPE html>
<link rel="stylesheet" href="/fonts/ahem.css">
<style>
body {
  font: 20px/1 Ahem;
  margin: 0;
}

#placefiller-above-anchor {
  height: 200px;
}

#placefiller-before-anchor {
  display: inline-block;
  width: 50px;
}

#inner-anchored {
  color: green;
  position: fixed;
  left: 70px;
  top: 180px;
}

#outer-anchored {
  color: yellow;
  position: fixed;
  left: 70px;
  top: 220px;
}
</style>

<div id="placefiller-above-anchor"></div>
<div id="placefiller-before-anchor"></div>
<span id="anchor">anchor</span>
<div id="inner-anchored">inner-anchored</div>
<div id="outer-anchored">outer-anchored</div>