Skip to content Skip to sidebar Skip to footer

CSS Hover + Element Crashing In Webkit (Chrome, Safari)

Found an annoying bug today which crashed chrome and safari (so all webkit browsers?) with just CSS. It's a hover menu, hovering over an element then displaying the next dropdown l

Solution 1:

Change

.ukn-network-jumper strong:hover + ul,
.ukn-network-jumper ul:hover {
    display:block;
}

to

.ukn-network-jumper strong:hover + ul,
.ukn-network-jumper:hover ul {
    display:block;
}

You don't want to display the ul when you are hovering the ul but when you are hovering the parent div.


Post a Comment for "CSS Hover + Element Crashing In Webkit (Chrome, Safari)"