我正在尝试使用样式组件为 React 设置滑块样式,但我不知道如何设置拇指样式。我有一个看起来像这样的 CSS:
.faderInput::-webkit-slider-thumb {
-webkit-appearance: none;
width: 15px;
height: 15px;
border:1px solid black;
...
}
我的样式组件看起来像这样
const FaderInput = styled.input`
...
::-webkit-slider-thumb {
-webkit-appearance: none;
width: 15px;
height: 15px;
border:1px solid black;
...
}
`;
有人知道如何将此类选择器移植到样式组件吗?