i have a ul(parent) inside which another ul is there. I have given style to the child ul using the following code when hovering on the parent ul
ul:hover>ul{
}
This gives style to the child ul when hovering on the parent ul. Now I want to give style to the parent ul when hovering on the child ul?
Is there any posible way?