答案 0 :(得分:1)
您可以设置拇指和曲目的样式,但几乎所有浏览器都使用不同的CSS。有关详细信息,请参阅https://css-tricks.com/styling-cross-browser-compatible-range-inputs-css/。
input[type=range]::-webkit-slider-runnable-track {
-webkit-appearance: none;
width: 100%;
height: 15px;
background: linear-gradient(to right, black, white);
border: 2px solid grey;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border: none;
height: 40px;
width: 40px;
border-radius: 20px;
background-color: blue;
cursor: pointer;
}