tor-browser

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

writing-mode-container-resize-ref.html (491B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>View transitions: writing mode on a container (ref)</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
      5 <link rel="author" href="mailto:vmpstr@chromium.org">
      6 
      7 <style>
      8 #target {
      9  background: lightblue;
     10  height: 100%;
     11  aspect-ratio: 1 / 1;
     12 }
     13 #container {
     14  width: 100px;
     15  height: 50px;
     16  border: 1px solid black;
     17 }
     18 body {
     19  writing-mode: vertical-lr;
     20  background: pink;
     21 }
     22 </style>
     23 
     24 <div id=container><div id=target></div></div>