how to remove the scroll bar html code example
Example 1: 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;
scrollbar-width: none;
}
ul {
display: flex;
list-style-type: none;
padding: 0;
margin: 0;
}
img {
width: 300px;
height: 180px;
}
.scoll-pane::-webkit-scrollbar {
display: none;
}
Example 2: how to remove scrollbars using javscript
body {
overflow-y: hidden;
overflow-x: hidden;
}