summaryrefslogtreecommitdiffstats
path: root/layout/reftests/async-scrolling/dynamic-toolbar-sticky-bottom-1-ref.html
blob: 8ff44978127fb84279561effef0c09eda93cee16 (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
<html>
<meta name="viewport" content="width=device-width">
<style>
html {
    scrollbar-width: none;
}
#scrolled {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;

    height: 2000px;
    width: 100%;
}
#sticky {
    width: 100%;
    height: 200px;
    position: sticky;
    bottom: 70px;
    background: red;
    align-self: flex-end;
}
</style>
<body>
  <div id="scrolled">
    <div id="sticky"></div>
  </div>
</body>
</html>