Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<meta charset="utf-8">
<style>
#scroll-container {
overflow: hidden scroll;
width: 300px;
height: 100px;
}
#anchor {
width: 100px;
height: 100px;
background: orange;
margin-bottom: 100px;
}
#chained {
width: 100px;
height: 50px;
background: blue;
}
#target {
width: 100px;
height: 50px;
background: green;
}
</style>
<div id="scroll-container">
<div id="anchor">anchor1</div>
</div>
<div id="chained">chained</div>
<div id="target">target</div>