I have a div which is to be shown on hover of another div, but on hovering out it gets hidden again. I am trying not to hide the div on hover out, with the help of CSS but not getting a way.
a:hover b {
opacity : 1
}
a:unhover b {
opacity : 1
}
The div
element is shown only after hover, but should not get hidden on hover out.