Related hover i am not getting

in the webinar sir has assigned one assginment to drop the list when we will hover on the list but i just know hover which chnges the effects when the pointer is on that element how can we change the hover which will show more options when the pointer is on that element

You can play with the display property of the list items:
for example:
#listItem {
display: none;
}
#list:hover #listItem {
display: block;
}
This example will show listitems when we hover over list, only condition is #listItem should be child of #list.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.