named-element-with-fix-pos-child-ref.html (483B)
1 <!DOCTYPE html> 2 <html> 3 <title>View transitions: element with fixed position descendant (ref)</title> 4 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/"> 5 <link rel="author" href="mailto:khushalsagar@chromium.org"> 6 <style> 7 .target { 8 width: 100px; 9 height: 100px; 10 background: blue; 11 } 12 .child { 13 width: 100px; 14 height: 100px; 15 position: fixed; 16 top: 150px; 17 left: 150px; 18 background: grey; 19 } 20 </style> 21 22 <div class=target> 23 <div class=child></div> 24 </div>