at-rule-opt-in-auto-ref.html (502B)
1 <!DOCTYPE html> 2 <title>View Transitions: @view-transition opt in for cross-document (ref)</title> 3 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-2/"> 4 <link rel="author" href="mailto:bokan@chromium.org"> 5 <style> 6 .old { 7 width: 50vw; 8 height: 100vh; 9 position: fixed; 10 left: 0px; 11 top: 0px; 12 background: blue; 13 } 14 15 .new { 16 width: 50vw; 17 height: 100vh; 18 position: fixed; 19 left: 50vw; 20 top: 0px; 21 background: grey; 22 } 23 </style> 24 <div class="old"></div> 25 <div class="new"></div>