Answers for "scroll not hidden css"

1

overflow x not hidden

.container {
  position: fixed;
  overflow: hidden;
}
Posted by: Guest on January-08-2022
-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

Browse Popular Code Answers by Language