tor-browser

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

number-max-height-2.html (443B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <style>
      5 
      6 input {
      7  border: 3px solid black;
      8  padding: 4px;
      9  width: 300px;
     10  height: 300px;
     11  max-height: 100px;
     12  box-sizing: border-box;
     13  /* hide the spin buttons: */
     14  -moz-appearance: textfield;
     15 }
     16 
     17 * > input[type=number] {
     18  /* get rid of background gradient for Firefox OS */
     19  background-color: transparent ! important;
     20 }
     21 
     22    </style>
     23  </head>
     24  <body>
     25    <input type="number">
     26  </body>
     27 </html>