tor-browser

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

select-element-zero-height-001-ref.html (552B)


      1 <!DOCTYPE html>
      2 <title>Reference: Select element in flexbox with zero height</title>
      3 <link rel="author" title="Mozilla" href="https://mozilla.org">
      4 <style>
      5  .container {
      6    height: 0px;
      7    border: 1px dotted black;
      8  }
      9  select {
     10    /*
     11      WebKit applies intrinsic (default) margins to control elements in some circumstances,
     12      let's disable them to avoid mismatch errors caused by those margins.
     13    */
     14    margin: 0;
     15  }
     16 </style>
     17 <body>
     18  <div class="container">
     19    <select style="width:100%"><option>Hi</option></select>
     20  </div>
     21 </body>