Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

how to remove horizontal scrolling

/* 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;
}
Source by www.stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #remove #horizontal #scrolling
ADD COMMENT
Topic
Name
4+6 =