anchor-pos-sticky-1-ref.html (316B)
1 <html> 2 <style> 3 .anchor { 4 position: absolute; 5 width: 50px; 6 height: 50px; 7 background: blue; 8 left: 0; 9 top: 50px; 10 } 11 .anchored { 12 position: absolute; 13 width: 50px; 14 height: 50px; 15 background: yellow; 16 left: 50px; 17 top: 100px; 18 } 19 </style> 20 <div class="anchor"></div> 21 <div class="anchored"></div> 22 </html>