有没有办法为Webkit浏览器设置<input type="range">
元素的样式?
答案 0 :(得分:14)
David B. Calhoun在styling a range to make it look like an iPhone slider写了一篇非常好的文章。
我认为博客文章应该涵盖范围输入类型样式的大多数方面。
以下是一些CSS:
input[type='range']::-webkit-slider-thumb {
-webkit-appearance: none;
width: 68px;
height: 44px;
-webkit-border-radius: 10px;
border-radius: 10px;
-webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #fefefe),
color-stop(0.49, #dddddd),
color-stop(0.51, #d1d1d1),
color-stop(1, #a1a1a1)
);
background-repeat: no-repeat;
background-position: 50%;
}
答案 1 :(得分:4)
我只听说过类型range
,而不是slider
。
input[type="range"] {
-webkit-appearance: slider-horizontal;
}