This question may seem familiar, but I am still looking for a new solution.
Here is the link that closely matches my query:
CSS overflow-x: visible; and overflow-y: hidden; causing scrollbar issue
The W3C spec mentioned in the above link states:
The values of ‘overflow-x’ and ‘overflow-y’ are computed based on specific criteria related to 'visible' and 'scroll'. The value of 'overflow' depends on the values of 'overflow-x' and 'overflow-y'.
I am still searching for new solutions to this problem.
You can view the issue in my fiddle here: The problem of mine is in this fiddle.
In my fiddle, I have simplified the 'sidebar' class from 'BootStrap'.
overflow-x: visible;
//overflow-y: scroll;
If you notice, I have commented out 'overflow-y: scroll' in the CSS of the '.panel' class.
As a result, 'hover' works but 'scroll' does not. On uncommenting 'overflow-y: scroll', 'scroll' functions while 'hover' doesn't.
Is there a way to make both 'hover' and 'scroll' function simultaneously?
If you have any suggestions or ideas to resolve this matter, please share them.
Or is this problem still unsolvable?