number-max-height-1.html (444B)
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: content-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>