anchor-position-circular-ref.html (294B)
1 <!DOCTYPE html> 2 <style> 3 div { 4 width: 100px; 5 height: 100px; 6 } 7 8 #anchored1 { 9 position: absolute; 10 left: 0; 11 top: 0; 12 background: orange; 13 } 14 15 #anchored2 { 16 position: absolute; 17 left: 0; 18 top: 100px; 19 background: green; 20 } 21 </style> 22 23 <div id="anchored1"></div> 24 <div id="anchored2"></div>