Hello guys,
Without using overflow-scroll=“true”, I can hide the scroll-bar by using css:
.scroll-bar-indicator { display: none !important; }
But the above code doesn’t work when overflow-scroll="true" is used in ion-content, so is there a way to hide the y-axis scroll-bar when using overflow-scroll=“true”?
overflow-scroll="true"
I tested the code on chrome browser and Nexus 5 (crosswalk + cordova). Thanks
Anyone has some solution?
try this css:
// remove scrollbar while using overflow-scroll="true" ::-webkit-scrollbar, *::-webkit-scrollbar { display: none; }
Works perfect! Thanks Halo
Hi,
I am using Ionic 3, and in my webbrowser the scrollbars will still show for all devices in my ionic-lab.
Will they hide on the mobile version?
Thanks in advance!
to hide this one will help you.
::-webkit-scrollbar, *::-webkit-scrollbar { display: none; }