tor-browser

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

select-appearance-sizing-in-flex-ref.html (526B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>Test of sizing customizable select inside of flex</title>
      4 <link rel=author href="mailto:dbaron@chromium.org">
      5 
      6 <style>
      7  .container > * {
      8    display: inline-block;
      9    vertical-align: top;
     10    white-space: nowrap;
     11  }
     12 
     13  select {
     14    appearance: base-select;
     15  }
     16 
     17  ::picker-icon {
     18    display: none;
     19  }
     20 </style>
     21 
     22 <div class="container">
     23  <select>
     24    <option>First Option</option>
     25    <option>Second Option</option>
     26  </select
     27  ><div class="after">The content after the select.</div>
     28 </div>