Answers for "hide side scrollbar css"

CSS
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