tor-browser

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

open-summary-table-cell-style.html (491B)


      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    display: table-cell;
      9  }
     10  </style>
     11  <body>
     12    <details open>
     13      <p>This is the details.</p>
     14      <!-- Make summary the second element child so that layout will try to
     15           render it as the first child. -->
     16      <summary>Summary
     17        <div>Block in summary</div>
     18      </summary>
     19    </details>
     20  </body>
     21 </html>