Answer the question
In order to leave comments, you need to log in
Is it possible to remove only the vertical scroll from the block with -webkit-scrollbar?
::-webkit-scrollbar
Never
used a selector before.
Task: remove the vertical scroll, leaving the horizontal one. Example - here
What is the question:
Remove both scrollers turns out
.parent::-webkit-scrollbar{
/* display: none; */
opacity: 0;
}
.parent::-webkit-scrollbar:vertical{
/* display: block; */
opacity: 1;
}
:vertical, :horizontal
. (It is written about these selectors here , for example) 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