Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-anchor-position/anchor-scroll-to-sticky-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Tests scroll adjustments of element anchored to a sticky-position element</title>
<link rel="author" href="mailto:wangxianzhu@chromium.org">
<link rel="match" href="reference/anchor-scroll-to-sticky-002-ref.html">
<style>
body {
margin: 0;
}
div {
width: 100px;
height: 100px;
}
#scroller {
overflow: scroll;
position: relative;
}
#anchor {
anchor-name: --a1;
position: sticky;
top: 0;
height: 20px;
background: orange;
}
#anchored {
position: absolute;
position-anchor: --a1;
left: anchor(left);
top: anchor(bottom);
background: green;
}
</style>
<!-- Anchored to sibling sticky-positioned. -->
<div id="scroller">
<div style="height: 50px"></div>
<div id="anchor"></div>
<div style="height: 300px"></div>
<div id="anchored"></div>
</div>
<script>
scroller.scrollTop = 200;
</script>