我的页面上有一个,我用 css 设置了它的样式。
input[type=range] {
-webkit-appearance: none;
background-color: #1b2b66;
width: 300px;
height: 3px;
position: relative;
top: -9px;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
background-image: url("../images/slider.png");
background-size: 100% auto;
border: 0px;
width: 35px;
height: 35px;
}
问题是:在 ipad 上,当用户单击滑块时,图像周围会出现黑色边框。我该如何隐藏这个?