# CSS: Hide scrollbar

Hide the scrollbar using `<element-selector>::-webkit-scrollbar`

```html
<style>
  .content {
    height: 300px;
    width: 300px;
    overflow: auto;
  }
  .content::-webkit-scrollbar {
    display: none;
  }
</style>

<div className="content">
  content...
</div>
```
![R367-hide-scrollbar-using-css-1618507946666-1.gif](https://cdn.hashnode.com/res/hashnode/image/upload/v1619196140726/Iv-8RJUzR.gif)
