blob: 0e51f6c8d9b2a590fcc20a1fbbeb0cb5f18074bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<style>
/* None of these selectors should match from content */
input[type=number]::-moz-number-spin-box,
input[type=number]::-moz-number-spin-up,
input[type=number]::-moz-number-spin-down {
background-color: red;
}
</style>
</head>
<body>
<input type="number" style="-moz-appearance:none;">
</body>
</html>
|