Answers for "how to disable side scroll bar in 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
0

avoid side scrolling css

html, body { max-width: 100%; overflow-x: hidden; }.
Posted by: Guest on October-15-2021

Code answers related to "how to disable side scroll bar in css"

Browse Popular Code Answers by Language