Answers for "css scrollbar but not show"

0

hide scroll bar when not needed

overflow: auto;
Posted by: Guest on November-12-2020
-1

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 "css scrollbar but not show"

Browse Popular Code Answers by Language