tor-browser

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

select-button-min-height-001.html (608B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>min-height and height both trigger same rendering for select and buttons by default</title>
      4 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
      5 <link rel="author" title="Mozilla" href="https://mozilla.org">
      6 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1362907">
      7 <link rel="match" href="select-button-min-height-001-ref.html">
      8 <style>
      9  select, input, button { min-height: 100px; }
     10 </style>
     11 <div>
     12  <select><option>Select</option></select>
     13  <button>Button</button>
     14  <input type="button" value="Input">
     15 </div>