Answer the question
In order to leave comments, you need to log in
Why doesn't input::-webkit-slider-thumb, input::-moz-slider-thumb work?
Hello, having created a small slider to support the ego, not only in webkit browsers, you have to use the scss type template
%thumb {
/*something*/
}
input::-webkit-slider-thumb {
@extend %thumb;
}
input::-moz-slider-thumb {
@extend %thumb;
}
But why the type variantinput::-webkit-slider-thumb, input::-moz-slider-thumb {
@extend %thumb;
}
does not work
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question