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