V
V
VctorIAN2021-06-22 19:07:10
Sass
VctorIAN, 2021-06-22 19:07:10

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 variant
input::-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

1 answer(s)
I
inkShio, 2021-06-22
@VctorIAN


Perhaps you have something else wrong, so it's all working ok. Do View Compiled CSS and see that everything compiles fine.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question