【发布时间】:2015-01-06 13:34:40
【问题描述】:
我使用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;
}
但是,CSS 上的active 在这里不起作用。我也尝试过专注,但仍然没有。
【问题讨论】:
标签: html css materialize