blob: 623f608101b327b16edbd63edf1d480e69688c84 (
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
27
28
29
30
31
32
33
34
35
|
<!DOCTYPE html>
<html>
<head>
<title>Test ::-moz-range-progress</title>
<style>
input[type=range] {
width: 200px;
height: 20px;
margin: 0;
padding: 0;
background-color: blue;
}
input[type=range]::-moz-range-track {
border: 0;
height: 10px;
background-color: lime;
}
input[type=range]::-moz-range-thumb {
width: 10px;
height: 10px;
border: 0;
border-radius: 0;
background-image: none;
background-color: yellow;
}
</style>
</head>
<body>
<input type=range value=100>
</body>
</html>
|