'transform' for compatibilityscss(vendorPrefix) code example

Example 1: also define the standard property 'border-radius' for compatibility css(vendor prefix)

.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;
}

Example 2: Also define the standard property 'filter' for compatibilitycss(vendorPrefix)

Also define the standard property 'filter' for compatibilitycss(vendorPrefix)

Tags:

Css Example