Answers for "overflow scroll 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
0

hide the scrollbar in css if not overflow

.myClass {
  /*auto will remove and add the scroll bar as needed*/
  overflow: auto;
}
Posted by: Guest on September-30-2020

Code answers related to "overflow scroll not working"

Browse Popular Code Answers by Language