How do I remove outline on link click?

后端 未结 6 726
青春惊慌失措
青春惊慌失措 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:24

    You can just use this:

    a:active, a:focus {
      outline: 0;
      border: none;
      -moz-outline-style: none;
    }
    

提交回复
热议问题