I have a react component with a div with a class name
<span className="myClass" ..
I have a CSS style like this
.myClass{
text-decoration:underline;
}
If I go into dev tools and force the state to hover the text is decorated as underline( Inspect hovered element in Chrome?) However, if I just mouse over the span the text decoration is not applied.
It seems something is blocking the hover state from being applied. Something also seems to be interfering with onMouseOut
events for the parent div so I think something is messing up normal mouse events. I am using a few libraries so it seems like something is somehow blocking normal mouse events.
What steps can I take to debug this?