Answers for "scrollbar not working"

CSS
1

scrollbar not working

/*if the scrollbar is not working add define height*/
li{
  overflow-y: auto;
  overflow-x: auto;
  width: 200px;
  height: 500px;
}
Posted by: Guest on October-17-2021
-1

scrollbar width not working

.scrollable-element {
  scrollbar-width: thin;
}
Posted by: Guest on May-22-2021

Browse Popular Code Answers by Language