在Firefox中可以用于垂直方向的HTML5输入类型范围?

现在有可能。在Firefox Web浏览器中可以使用垂直方向的HTML5输入类型范围。

<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);
}
猜你喜欢