I am currently using a fiddle for my project
This fiddle includes a simple hover trigger to display the content
ul li:hover > ul
{
display:block
}
When hovering, a dropdown menu appears and if there are many items, a scrollbar shows up.
Everything works smoothly on IE and Firefox. However, I have noticed an issue with Chrome - when you try to scroll over the scrollbar, it interrupts the hover state. This seems to be a problem in recent Chrome versions, as Chrome 55 behaves correctly but Chrome 56.0 (.2924) has this glitch.
I prefer not to use JS to fix this, so I'm looking for a CSS solution for all management tasks.
If anyone can help identify why the hover state is not being properly recognized, I would appreciate it!
Thanks