P粉8967510372023-08-18 11:08:31
You need to use two CSS properties, one for webkit and another for Mozilla, as shown below -
.invisible-scrollbar::-webkit-scrollbar { display: none; } .invisible-scrollbar { scrollbar-width: none; }
Where .invisible-scrollbar
is the class added to the related element.