ตอนนี้เป็นไปได้ ช่วงประเภทอินพุต HTML5 สำหรับการวางแนวตั้งสามารถทำได้ในเว็บเบราว์เซอร์ Firefox
<input type = "range" name = "range" min = "0" max = "" step = "1" value = "2" />
ต่อไปนี้คือ 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);
}