Strange underlines in font-awesome CSS

前端 未结 6 951
孤城傲影
孤城傲影 2021-01-03 20:38

When I hover on font-awesome\'s icons (when they\'re stacked together) like below (see picture). I get these strange underlines. Any idea where they could come from?

6条回答
  •  一向
    一向 (楼主)
    2021-01-03 21:00

    Those lines usually come from the default (underline) a element style.

    Either use another element or remove the underline :

    a.social { /* or whatever your class */
       text-decoration: none;
    }
    

提交回复
热议问题