tor-browser

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

content-smaller-than-box-size-ref.html (450B)


      1 <!DOCTYPE html>
      2 <title>View transitions: element with content less than box size (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 
      6 <style>
      7 #target {
      8  width: 100px;
      9  height: 100px;
     10 }
     11 #inner {
     12  width: 10px;
     13  height: 10px;
     14  background: blue;
     15  position: relative;
     16  top: 10px;
     17  left: 10px;
     18 }
     19 </style>
     20 
     21 <div id=target>
     22  <div id=inner></div>
     23 </div>