popover-anchor-scroll-display-ref.html (658B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 4 <div class=spacer style="height: 200px"></div> 5 6 <p>There should be a green box attached to the right side of each orange box.</p> 7 <div class=ex id=ex1><div class=anchor></div><div class=popover></div></div> 8 <div class=ex id=ex2><div class=anchor></div><div class=popover></div></div> 9 10 <div class=spacer style="height: 200vh"></div> 11 12 <style> 13 .ex { 14 margin: 25px; 15 font-size: 0; 16 } 17 .ex div { 18 display:inline-block; 19 width: 100px; 20 height: 100px; 21 } 22 .anchor { 23 background: orange; 24 } 25 .popover { 26 background: lime; 27 } 28 </style> 29 30 <script> 31 document.documentElement.scrollTop = 100; 32 </script>