Answers for "remove side scrollbar css"

4

hide horizontal scrollbar css

.x-scroll-disabled {
	overflow-x: hidden;
}
Posted by: Guest on March-23-2020
4

remove horizontal scrollbar css

overflow-x: hidden;
Posted by: Guest on October-11-2020
1

how to remove side scroll bar

body {
  overflow-x: hidden;
}

  /* MORE OPTIONS : - 
    overflow-x: auto;
    overflow-x: scroll;
    overflow-x: visible;
  */
Posted by: Guest on March-15-2021

Browse Popular Code Answers by Language