How to remove focus around buttons on click

后端 未结 30 1070
遇见更好的自我
遇见更好的自我 2020-12-02 04:24

My buttons all have a highlight around them after I click them. This is in Chrome.

\"Unselected\"

30条回答
  •  Happy的楠姐
    2020-12-02 04:59

    Add this in CSS:

    *, ::after, ::before {
        box-sizing: border-box;
        outline: none !important;
        border: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }
    

提交回复
热议问题