tor-browser

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

modify-style-via-cssom-ref.html (359B)


      1 <!DOCTYPE html>
      2 <title>View transitions: Modify style via CSSOM (ref)</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
      4 <link rel="author" href="mailto:khushalsagar@chromium.org">
      5 <style>
      6 #box {
      7  width: 100px;
      8  height: 100px;
      9  background: limegreen;
     10 }
     11 #box {
     12  transform: translateY(100px);
     13 }
     14 
     15 </style>
     16 <div id="box"></div>