Remove underline only from anchor element child

前端 未结 7 783
故里飘歌
故里飘歌 2020-12-10 12:02

When an a tag contains child elements, like an i tag, it\'s still applying the underline to it on hover, and I\'m wondering how to remove the under

7条回答
  •  天命终不由人
    2020-12-10 12:30

    I had the same issue and fixed this using the following css rule:

    a:-webkit-any-link {text-decoration:none}
    

    hope it helps!

提交回复
热议问题