tor-browser

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

summary-display-list-item-001-ref.html (550B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Reference: summary with 'display: list-item'</title>
      4 <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
      5 <style>
      6 details {
      7  margin-left: 50px;
      8 }
      9 .inside {
     10  list-style-position: inside;
     11 }
     12 </style>
     13 <details>
     14  <summary>summary</summary>
     15  content
     16 </details>
     17 <details>
     18  <summary class="inside">summary</summary>
     19  content
     20 </details>
     21 <details open>
     22  <summary>summary</summary>
     23  content
     24 </details>
     25 <details open>
     26  <summary class="inside">summary</summary>
     27  content
     28 </details>