tor-browser

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

fixed-summary.html (347B)


      1 <!DOCTYPE html>
      2 <!-- Any copyright is dedicated to the Public Domain.
      3   - http://creativecommons.org/publicdomain/zero/1.0/ -->
      4 
      5 <html>
      6  <style>
      7  summary {
      8    position: fixed;
      9    bottom: 0;
     10    right: 0;
     11  }
     12  </style>
     13  <body>
     14    <details>
     15      <summary>Summary</summary>
     16      <p>This is the details.</p>
     17    </details>
     18  </body>
     19 </html>