tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

column-span-during-transition-doesnt-skip-ref.html (467B)


      1 <!DOCTYPE html>
      2 <title>View transitions: column-span elements in a fragmented container aren't skipped</title>
      3 <link rel="help" href="https://www.w3.org/TR/css-view-transitions-1/">
      4 <link rel="author" href="mailto:mattwoodrow@apple.com">
      5 
      6 <style>
      7 html {
      8  background: pink;
      9 }
     10 #container {
     11  width: 500px;
     12  height: 500px;
     13  columns: 2;
     14 }
     15 #target {
     16  height: 200px;
     17  background: green;
     18  column-span: all;
     19 }
     20 </style>
     21 <div id=container>
     22  <div id=target></div>
     23 </div>