position-sticky-in-transformed-scrollframe-ref.html (369B)
1 <!DOCTYPE HTML> 2 <html> 3 <div style="margin-top: 100px"> 4 <div id="scroller" style="overflow:scroll; height: 400px; width: 400px; background-color: yellow"> 5 <div style="height: 800px"> 6 <div style="position: relative; top: 120px; height: 20px; background-color: green"></div> 7 </div> 8 </div> 9 </div> 10 <script> 11 document.getElementById('scroller').scrollTop = 120; 12 </script>