blob: 73af6dcb099864072cb680c821adf823719277c0 (
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
36
|
<!DOCTYPE html>
<html>
<head>
<title>Test ::-moz-range-progress</title>
<style>
div {
margin: 0;
padding: 0;
}
.range {
display: inline-block;
position: relative;
width: 200px;
height: 20px;
background-color: blue;
}
.range-progress {
display: inline-block;
position: absolute;
top: 5px;
width: 50px;
height: 10px;
background-color: lime;
}
</style>
</head>
<body>
<div class="range">
<div class="range-progress"></div>
</div>
</body>
</html>
|