2

Hey I have just added the following code to one of my span:

overflow-y : scroll;
height: 200px;

This is kind of working fine. The only issue is that the scroll bar does appear all the time even when you can't click on it. Isn't there a way to hide it if it is inactive ?

Thanks

Scipion
  • 11,449
  • 19
  • 74
  • 139

2 Answers2

2

Set

overflow-y:auto;

on the element

Akshay
  • 14,138
  • 5
  • 46
  • 70
0

Set overflow-y to auto. This will solve it.

Marwan Ossama
  • 345
  • 1
  • 6
  • 12