Change link color on div hover

前端 未结 3 1040
醉酒成梦
醉酒成梦 2021-01-12 05:40

How do I change my link colors when I hover a div?

I tried to use:

#voltarTEST {
    width: 80px;
    height: 62px;
    padding-top: 16px;
    backgr         


        
3条回答
  •  借酒劲吻你
    2021-01-12 06:25

    You want to set the hover event on the div, not the link..

    #voltarTEST a:hover should be #voltarTEST:hover a

    The first (the way you had it) says when the link inside of the voltarTEST div is hovered on. The second says apply this style to links inside voltarTEST when voltarTEST is hovered on.

    Here's a DEMO

提交回复
热议问题