tor-browser

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

1124636-2-fieldset-min-height-ref.html (417B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>Minimum height on fieldset</title>
      6    <style>
      7    div {
      8      writing-mode: vertical-lr;
      9    }
     10    fieldset {
     11      background:rgba(0,0,0,0.1);
     12      border-color:teal;
     13      border-width:2px;
     14      height:200px;
     15    }
     16    </style>
     17  </head>
     18  <body>
     19    <div>
     20      <fieldset>
     21 <p>Lorem ipsum.</p>
     22      </fieldset>
     23    </div>
     24  </body>
     25 </html>