css how to remove horizontal scrollbar
html, body {
max-width: 100%;
overflow-x: hidden;
}
css how to remove horizontal scrollbar
html, body {
max-width: 100%;
overflow-x: hidden;
}
remove horizontal scrollbar css
overflow-x: hidden;
css stop scrollbar
html {
scrollbar-width: none; /* For Firefox */
-ms-overflow-style: none; /* For Internet Explorer and Edge */
}
html::-webkit-scrollbar {
width: 0px; /* For Chrome, Safari, and Opera */
}
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;
}
hgow to hide scroll bar and add buttons in javascript
.scoll-pane {
width: 100%;
height: auto;
overflow: auto;
outline: none;
overflow-y: hidden;
padding-bottom: 15px;
-ms-overflow-style: scroll; // IE 10+
scrollbar-width: none; // Firefox
}
ul {
display: flex;
list-style-type: none;
padding: 0;
margin: 0;
}
img {
width: 300px;
height: 180px;
}
.scoll-pane::-webkit-scrollbar {
display: none; // Safari and Chrome
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us