0

I tried with css but i want achieve it on scroll, not on hover

 `.scrollbar {
  min-height: 500px;
  max-height: 500px;
  background: #f1f1f1;
  overflow-y: hidden;
}
  .scrollbar:hover {
  overflow-y : auto;
}`

Currently page scrollbar is showing but I want to show the scrollbar only when user scrolls the page. Is this possible in CSS or React?

0 Answers0