我遇到了输入范围元素的CSS问题:
<input type="range" id="difficultSelect" max="3" min="1" value="2"/>
css看起来像这样:
-webkit-appearance: none;
z-index: 102;
width: 225px;
height: 5px;
margin-left: 95px;
margin-top: 15px;
border-radius: 2px;
background: linear-gradient(to right, #83f922 0%,#ff4c00 100%);
background: -webkit-gradient(linear, left top, right top, color-stop(0%,#83f922),
color-stop(100%,#ff4c00));
background: -moz-linear-gradient(left, #83f922 0%, #ff4c00 100%);
background: -webkit-linear-gradient(left, #83f922 0%,#ff4c00 100%);
正如您所见,滑块的背景应显示从绿色到红色的线性渐变。 在Chrome中,它会按预期显示,但在Firefox中有背景渐变,但在它上面是滑块的正常“灰色”条:http://imgur.com/xcxuZXV
是我的错吗? Firefox版本是27.0.1
感谢
答案 0 :(得分:2)
Mozilla有一个单独的属性来设置输入的阴影dom(这是-webkit-appearance:none;
为webkit处理的内容):
::-moz-range-track {background:transparent; border:0px;}
在旁注中,您还可以设置滑动/手柄/按钮/拇指的样式:
/* These need to be separated, not combined with a comma */
::-webkit-slider-thumb { /* ... */}
::-moz-range-thumb { /* ... */}