Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用JSS设置滚动条样式?下面的解决方案不起作用。
'::-webkit-scrollbar-track': { background: 'red', }, '::-webkit-scrollbar': { width: 10, background: 'red', }, '::-webkit-scrollbar-thumb': { background: 'green', },
在 JSS 中,伪元素以 & 符号为前缀。尝试以下方法:
'&::-webkit-scrollbar-thumb': { background: '#888' }