CSS: Hide Scrollbar while still being able to scroll.

PHOTO EMBED

Mon Aug 29 2022 16:29:23 GMT+0000 (Coordinated Universal Time)

Saved by @marcopinero #css

/*-webkit- (Chrome, Safari, newer versions of Opera):*/
.element::-webkit-scrollbar { width: 0 !important }

/*-moz- (Firefox):*/
.element { overflow: -moz-scrollbars-none; }

/*-ms- (Internet Explorer +10):*/
.element { -ms-overflow-style: none; }
content_copyCOPY