Search code examples
ionic4

Ionic 4 - Remove Scroll Bar


What is the best method to remove the scroll bar in Ionic 4 while still keeping the ability to scroll and using the shadow DOM?

::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none;
}

This above has no effect.


Solution

  • Try this it will work fine for me in ionic 4

    ion-content {
    --offset-bottom: auto!important;
    --overflow: hidden;
    overflow: auto;
    &::-webkit-scrollbar {
      display: none;
    }
    }