scroll-target-group-inline-targets-ref.html (576B)
1 <!DOCTYPE html> 2 <title>CSS Overflow Reference: dynamic setting of scroll-target-group with inline scroll targets</title> 3 <style> 4 .stg { 5 scroll-target-group: auto; 6 7 .target-current { 8 color: green; 9 } 10 } 11 12 #scroller { 13 height: 100px; 14 overflow: auto; 15 } 16 </style> 17 <div id="group" class="stg"> 18 <a href="#a">a</a> 19 <a href="#b" class="target-current">b</a> 20 </div> 21 <div id="scroller"> 22 <a id="a">aa</a> 23 <div style="height: 200px;"></div> 24 <a id="b">bb</a> 25 <div style="height: 200px;"></div> 26 </div> 27 <script> 28 scroller.scrollTop = 200; 29 </script>