position-visibility-anchors-visible-clip-ref.html (429B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <style> 4 .clip { 5 overflow: hidden; 6 border: 2px solid red; 7 } 8 .c { 9 position: absolute; 10 top: 50px; 11 width: 100px; 12 height: 100px; 13 border: 2px solid green; 14 } 15 .anchor { 16 background: blue; 17 } 18 .anchored { 19 position: absolute; 20 background: green; 21 } 22 </style> 23 <div class=clip><div class=c><div class=anchor>anchor</div><div class=anchored>anchored</div> 24 </div></div>