blob: 03080bf1012b6e7d16b961ea142b5390449b4a7a (
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
38
39
40
41
|
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<head>
<title>CSS Test: Sticky Positioning - offsets reference</title>
<link rel="author" title="Corey Ford" href="mailto:cford@mozilla.com">
<link rel="match" href="padding-2-ref.html">
<meta name="flags" content="dom">
<meta name="assert" content="Offsets should position the element with respect to the content box of the scrolling container">
<style>
#scroll {
width: 80px;
height: 80px;
overflow: hidden;
border: 10px solid black;
padding: 10px;
}
#sticky {
position: sticky;
width: 10px;
height: 10px;
top: 20px;
background-color: black;
}
.fill {
width: 1000px;
height: 1000px;
}
</style>
<body>
<div id="scroll">
<div class="fill"></div>
<div id="sticky"></div>
<div class="fill"></div>
</div>
<script type="application/javascript">
document.getElementById('scroll').scrollTop = 1100;
</script>
</body>
</html>
|