How do I remove outline on link click?

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

    Worked for me

    I battled this for a while and this worked for me on WordPress 5.5.3 with StoreFront theme:

    a:hover,
    a:active {
        outline: none;
        box-shadow: none !important;
    }
    

提交回复
热议问题