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