Source Code:
(back to article)
Submit
Result:
Report an issue
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
⌄
⌄
⌄
⌄
⌄
<!DOCTYPE html>
<
html
>
<
head
>
<
style
>
input
[type=
"number"
] {
-moz-appearance:
textfield
;
}
input
[type=
"number"
]:
hover
,
input
[type=
"number"
]:
focus
{
-moz-appearance:
number-input
;
}
</
style
>
</
head
>
<
body
>
<
input
type=
"number"
/>
</
body
>
</
html
>
<!DOCTYPE html> <html> <head> <style> input[type="number"] { -moz-appearance: textfield; } input[type="number"]:hover, input[type="number"]:focus { -moz-appearance: number-input; } </style> </head> <body> <input type="number" /> </body> </html>