Change link color on div hover

前端 未结 3 1066
醉酒成梦
醉酒成梦 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-12 06:20

    Use the :hover on the div instead of the a :

    #voltarTEST:hover a{
        text-decoration: none;
        font-size: x-small;
        font-family: Verdana;
    
        text-decoration: none;
        color:#FFF;
    }
    

提交回复
热议问题