Overflow-scroll ion-content

There have been reports that overflow: auto now works as expected with -webkit-overflow-scroll: touch, and if that’s confirmed that overflow-y should be set to auto.

I’ve brought this up because I’ve seen the scrollbar visible on Android when there is no content to scroll. As soon as I update the list to be higher than the overflow container, the scrollbar disappears. I had to apply one of either to fix it:

.overflow-scroll {
    overflow-y: auto !important;
}

or

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

I’ve tested this (both the issue and the solution) on MotoG@4.4.2, Nexus4@4.4.2, Galaxy Nexus@4.3 and ChromeRipple@34.

2 Likes