tor-browser

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

select-element-001-ref.html (573B)


      1 <!DOCTYPE html>
      2 <title>CSS aspect-ratio reference: select elements</title>
      3 <!-- WebKit uses quirky em in user agent sheet for margins of select, avoid it -->
      4 <style>
      5  select {
      6    margin: 0px;
      7  }
      8 </style>
      9 <select style="height: 50px; width: 50px; background: green;">
     10  <option value=""></option>
     11 </select>
     12 <br>
     13 <select style="height: 50px; width: 50px; background: green;">
     14  <option value="">The long text is selected</option>
     15 </select>
     16 <br>
     17 <select style="height: 50px; width: auto; background: green;">
     18  <option value="">The long text is selected</option>
     19 </select>