簡體   English   中英

使用邊框半徑時輸入范圍上的白色“背景”

[英]White “background” on input range when using border radius

你可以在這里找到我的問題的截圖; 在嘗試設置范圍輸入的樣式時,我注意到它有白色角落。 我似乎無法弄清楚為什么或如何刪除它們,我首先認為這是一個大綱,但設置大綱沒有做任何事情。 這是一個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;
}

試試這個css

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

是解決方案

你應該添加

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

默認情況下,輸入標記具有由chrome添加的白色背景

background-color :#565656 ;

到你的第一個輸入選擇器它應該解決你的問題

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM