tor-browser

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

details-open-pseudo-001-ref.html (311B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>reference for details:open pseudoclass</title>
      4 
      5 <style>
      6 details {
      7  color: green;
      8  margin-left: 5em;
      9 }
     10 </style>
     11 
     12 <p>The details element should be open, green, and indented:</p>
     13 
     14 <details open=true>
     15  <summary>Summary</summary>
     16  <p>Detailed content</p>
     17 </details>