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...
</div>
Top comments (0)