remove horizontal scrollbar css

62

overflow-x: hidden;
/* this works for vertical scrolling also

this is useful for those who can't use overflow: hidden or any other solution
because the css on the website changes in someway */

::-webkit-scrollbar:horizontal {
  display: none;
}

Comments

Submit
0 Comments