我使用Materialize CSS,我的表单中有一个范围滑块。当您单击它时,我想让子弹改变颜色和大小。但是,我不能让它工作。这是我尝试做的事情:
<p class="range-field"><input type="range" id="years" min="17" max="30" /></p>
input[type="range"]::-moz-range-thumb {
background: none repeat scroll 0 0 #277F31;
border: medium none;
border-radius: 50%;
height: 14px;
margin-top: -5px;
width: 14px;
}
input[type="range"]:active:-moz-range-thumb {
background: none repeat scroll 0 0 black;
border: medium none;
border-radius: 50%;
height: 24px;
margin-top: -5px;
width: 24px;
}
但是,active
on CSS 在这里不起作用。我也尝试过专注,但仍然没有。