修复警告 "Also define the standard property 'box-shadow' for compatibility"

Fix Warning "Also define the standard property 'box-shadow' for compatibility"

我使用 MDB 滚动库,VSCode 显示以下警告:

Also define the standard property 'box-shadow' for compatibility

如何修复它或至少忽略 VSCode 上的警告?

.scrollbar-black::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

这意味着除了供应商前缀版本 (-webkit-box-shadow) 之外,您还应该添加标准样式规则 (box-shadow)

.scrollbar-black::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); // <- Add this to fix.    
    background-color: #000;
}