怀特"背景"使用边框半径时的输入范围

时间:2016-12-31 07:12:19

标签: html css html5 css3

您可以找到我的问题here的屏幕截图;在尝试设置范围输入的样式时,我注意到它有白色角落。我似乎无法弄清楚为什么或如何删除它们,我首先认为这是一个大纲,但设置大纲没有做任何事情。这是一个JSFiddle:http://jsfiddle.net/c1y0y7dj/

我的CSS

input[type=range] {
    -webkit-appearance: none;

    width: 200px;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 200px;
    height: 5px;
    background: #565656;
    border: none;
    border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #F06A00;
    margin-top: -5px;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-moz-range-track {
    width: 200px;
    height: 5px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}
input[type=range]::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #F06A00;
}

input[type=range]::-ms-track {
    width: 200px;
    height: 5px;

    background: transparent;

    border-color: transparent;
    border-width: 6px 0;

    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #373737;
    border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
    background: #575757;
    border-radius: 10px;
}
input[type=range]::-ms-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #F06A00;
}
input[type=range]:focus::-ms-fill-lower {
    background: #373737;
}
input[type=range]:focus::-ms-fill-upper {
    background: #575757;
}

3 个答案:

答案 0 :(得分:2)

试试这个css

input[type=range] {
    -webkit-appearance: none;
    width: 200px;
    background-color: transparent;
}

答案 1 :(得分:2)

Here是解决方案

您应该添加到

input[type=range] {
    -webkit-appearance: none;
    width: 200px;
    background: transparent;
}

答案 2 :(得分:0)

默认情况下,如果您刚刚添加了

,则输入标记会有一个由chrome设置的白色背景
background-color :#565656 ;

到你的第一个输入选择器它应该解决你的问题