Answers for "remove horizontal scrolling and page break"

0

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;
}
Posted by: Guest on April-19-2021
1

how to stop a page from scrolling horizontally

overflow-x: hidden
Posted by: Guest on April-18-2020

Code answers related to "remove horizontal scrolling and page break"

Browse Popular Code Answers by Language