-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
30 lines (28 loc) · 748 Bytes
/
test.html
File metadata and controls
30 lines (28 loc) · 748 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Tests</title>
<script>
</script>
<style>
input[type=range][orient=vertical]
{
writing-mode: bt-lr; /* IE */
-webkit-appearance: slider-vertical; /* WebKit */
width: 8px;
height: 175px;
padding: 0 5px;
}
</style>
</head>
<body>
<input type="text" list="selection" min="0" max="100" name="range" orient="vertical" />
<datalist id="selection">
<option value="10" label="low">
<option value="20">
<option value="80" label="high">
</datalist>
</body>
</html>