CSS: Hide scrollbar
Hide the scrollbar using <element-selector>::-webkit-scrollbar <style> .content { height: 300px; width: 300px; overflow: auto; } .content::-webkit-scrollbar { display: none; } </style> <div className="content"> content... <...
Apr 23, 20211 min read1
