Answers for "overflow x scroll not showing scrollbar"

CSS
1

i used overflow-y : scroll but the scroll bar keep on showing

::-webkit-scrollbar {
  display: none;
}
Posted by: Guest on December-27-2020
1

css show scrollbar if overflow

/*You can automatically show a scrollbar IF there is overflow with  this: */
body {
  overflow:auto;
}
/*If you want to always show a scrollbar, use this: */
body {
  overflow:scroll;
}
Posted by: Guest on April-18-2021

Code answers related to "overflow x scroll not showing scrollbar"

Browse Popular Code Answers by Language