[Ionic 5] Hide scrollbar on ion-content

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

NOTE: If you are using a background image in the div after ion-content then do their background-size: contain; Tested in ios. Thanx

5 Likes