How do I remove outline on link click?

后端 未结 6 723
青春惊慌失措
青春惊慌失措 2021-02-06 20:47

When I click a link on my website it is creating an outline around the link like so

I\'ve tried adding:

a.image-link:focus { outline: 0; }
         


        
6条回答
  •  孤独总比滥情好
    2021-02-06 21:36

    If at-least one of the solutions above doesn't work for anyone. Give this a try as well

    a:active, a:focus {
     box-shadow: none;
    }
    

提交回复
热议问题