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