I am removing horizontal scroll bar completely from bottom. I tried this below ways.
1st way
Hide html horizontal but not vertical scrollbar
This way is working when the page is first loaded. But when I click on the UI. Bottom scroll bar is appeared but not scrollable and disabled. So UI shrinks slightly and disabled scrollbar is shown at the bottom.
2nd way
::-webkit-scrollbar {
display: none;
}
::-moz-scrollbar {
display: none;
}
::-o-scrollbar {
display: none;
}
This removed all scroll bar from UI. Not even the vertical scroll bar is shown. Even onclick
, neither vertical nor horizontal scroll bar is shown.
Is there a way to remove horizontal scroll bar completely in this way ?Not even shown when the UI is clicked.