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;
}
hide scrollbar css
/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hidden::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge add Firefox */
.scrollbar-hidden {
-ms-overflow-style: none;
scrollbar-width: none; /* Firefox */
}
remove horizontal scrollbar css
overflow-x: hidden;
How to remove horizontal scrollbar and yet allow vertical
overflow: auto; /* Setting the overflow to auto will automatically put a scrollbar where it is needed */
/*
But if you insist you do not want an horizontal scrolbar,
even if there is an overflowing text, you could use this lines of code
*/
overflow-y: scroll;
overflow-x: hidden;
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