I was making a website and I thought that the navbar would result too big in smaller devices. I found out how to make it scrollable but I don’t like the fact that it shows a new scrollbar next to it. How can I make that invisible?
>Solution :
Add overflow: hidden; to the css tag to hide both the horizontal and vertical scrollbar.
Example
body {
overflow: hidden; /* Hide scrollbars */
}
To only hide the vertical scrollbar, or only the horizontal scrollbar, use overflow-y or overflow-x:
Example
body {
overflow-y: hidden; /* Hide vertical scrollbar /
overflow-x: hidden; / Hide horizontal scrollbar */
}