Bây giờ thì có thể. Có thể sử dụng phạm vi loại đầu vào HTML5 cho hướng dọc trong trình duyệt web Firefox.
<input type = "range" name = "range" min = "0" max = "" step = "1" value = "2" />
Sau đây là CSS -
input[name = range] {
position:relative;
top: 150px;
width: 200px;
height: 13px;
border: 0
-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
transform: rotate(270deg);
}