I am creating a webpage. I want to apply a hover to some of the links so that when I hover over it I see other links. How? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

I am creating a webpage. I want to apply a hover to some of the links so that when I hover over it I see other links. How?

I want to get a drop-down of a link containing other links when hovered

1st Jun 2017, 5:18 AM
Oppong Nathaniel
1 ответ
+ 6
<a> link elements cannot contain other <a>s.... but you can set ':hover' pseudo selector on another parent element... Check this (simple) code to see how to obtain the behaviour you're expexted: https://code.sololearn.com/W8uxytZMuVDM/?ref=app
1st Jun 2017, 6:27 AM
visph
visph - avatar