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