csswizardry / ama

Ask me anything!
57 stars 4 forks source link

How can I make hover effect remains after mouse left over ? #36

Open Cristishor201 opened 7 years ago

Cristishor201 commented 7 years ago

I need to use this remain state on a drop down menu , which it highlight the background-color of the all the parents on a li element.

lassediercks commented 7 years ago

I'd propose to apply the styling on hover and focus

Cristishor201 commented 7 years ago

No problem. Finally I make it works, with the help of an ispiration from the Holy Spirit. :)

I put it :

#menu ul li:hover > a {
background-color: /* other color */ ;
}