remove bottom scroll bar code example
Example 1: remove horizontal scrollbar css
overflow-x: hidden;
Example 2: how to hide the scrollbar in css
::-webkit-scrollbar {
display: none;
}
Example 3: 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 */
}