o define the standard property 'flex' for compatibilitycss(vendorPrefix) code example
Example 1: Also define the standard property 'transition'
transition-property: none;
transition-property: all;
transition-property: test_05;
transition-property: -specific;
transition-property: sliding-vertically;
transition-property: test1, animation4;
transition-property: all, height, color;
transition-property: all, -moz-specific, sliding;
transition-property: inherit;
transition-property: initial;
transition-property: unset;
Example 2: 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;
}