Answers for "css no scroll horizontal"

5

how to keep page from scrolling sideways

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
Posted by: Guest on November-24-2019
4

hide horizontal scrollbar css

.x-scroll-disabled {
	overflow-x: hidden;
}
Posted by: Guest on March-23-2020

Browse Popular Code Answers by Language